| 593 | return llvm::ConstantInt::get(context(), llvm::APInt(32, val)); |
| 594 | } |
| 595 | llvm::Constant* GetI64Constant(uint64_t val) { |
| 596 | return llvm::ConstantInt::get(context(), llvm::APInt(64, val)); |
| 597 | } |
| 598 | |
| 599 | /// Load the module temporarily and populate 'symbols' with the symbols in the module. |
| 600 | static Status GetSymbols(const string& file, const string& module_id, |
no outgoing calls