| 1912 | // There is no relation between VariableNameToStorageID and ValueIDToVariableNames. |
| 1913 | |
| 1914 | void UpdateValue(ILOperand *op, int id) |
| 1915 | { |
| 1916 | if (op == nullptr) |
| 1917 | return; |
| 1918 | StackVariableNameToValueID.Last()[op] = id; |
| 1919 | } |
| 1920 | |
| 1921 | int FindValueID(ILOperand *op) |
| 1922 | { |
no outgoing calls
no test coverage detected