| 1400 | } |
| 1401 | |
| 1402 | Value createICmp(LLVMIntPredicate Op, Value LHS, Value RHS, |
| 1403 | const char *Name = "") noexcept { |
| 1404 | return LLVMBuildICmp(Ref, Op, LHS.unwrap(), RHS.unwrap(), Name); |
| 1405 | } |
| 1406 | Value createICmpEQ(Value LHS, Value RHS, const char *Name = "") noexcept { |
| 1407 | return createICmp(LLVMIntEQ, LHS, RHS, Name); |
| 1408 | } |
no test coverage detected