| 320 | } |
| 321 | |
| 322 | CompilerLocalVariableToRegisterMappingTable CompilerLocalVariableToRegisterMappingTable::copy() |
| 323 | { |
| 324 | // Trivilly copyable as its all plain old data and using STL containers... (We want a deep copy though!) |
| 325 | CompilerLocalVariableToRegisterMappingTable table; |
| 326 | table.localVarToRegister = localVarToRegister; |
| 327 | return table; |
| 328 | } |
| 329 | |
| 330 | void CompilerLocalVariableToRegisterMappingTable::reset() |
| 331 | { |
no outgoing calls
no test coverage detected