| 1976 | } |
| 1977 | |
| 1978 | llvm::Function* LlvmCodeGen::GetMurmurHashFunction(int len) { |
| 1979 | return GetLenOptimizedHashFn(this, IRFunction::HASH_MURMUR, len); |
| 1980 | } |
| 1981 | |
| 1982 | void LlvmCodeGen::ReplaceInstWithValue(llvm::Instruction* from, llvm::Value* to) { |
| 1983 | llvm::BasicBlock::iterator iter(from); |
no test coverage detected