| 1502 | } |
| 1503 | |
| 1504 | unsigned CompilerUtils::sizeOnStack(std::vector<Type const*> const& _variableTypes) |
| 1505 | { |
| 1506 | unsigned size = 0; |
| 1507 | for (Type const* type: _variableTypes) |
| 1508 | size += type->sizeOnStack(); |
| 1509 | return size; |
| 1510 | } |
| 1511 | |
| 1512 | void CompilerUtils::computeHashStatic() |
| 1513 | { |
no outgoing calls
no test coverage detected