| 129 | } |
| 130 | |
| 131 | std::vector<uint32_t> ExtractInts(uint64_t val) { |
| 132 | std::vector<uint32_t> words; |
| 133 | words.push_back(static_cast<uint32_t>(val)); |
| 134 | words.push_back(static_cast<uint32_t>(val >> 32)); |
| 135 | return words; |
| 136 | } |
| 137 | |
| 138 | std::vector<uint32_t> GetWordsFromScalarIntConstant( |
| 139 | const analysis::IntConstant* c) { |
no test coverage detected