| 1027 | } |
| 1028 | |
| 1029 | int LlvmCodeGen::ReplaceCallSitesWithBoolConst(llvm::Function* caller, bool constant, |
| 1030 | const string& target_name) { |
| 1031 | llvm::Value* replacement = GetBoolConstant(constant); |
| 1032 | return ReplaceCallSitesWithValue(caller, replacement, target_name); |
| 1033 | } |
| 1034 | |
| 1035 | int LlvmCodeGen::RemoveCallSites(llvm::Function* caller, const std::string& target_name) { |
| 1036 | DCHECK(!is_compiled_); |
no outgoing calls
no test coverage detected