GreaterOrEqualTo returns x >= y. The types of the two values must be equal.
(x, y *Value)
| 142 | |
| 143 | // GreaterOrEqualTo returns x >= y. The types of the two values must be equal. |
| 144 | func (b *Builder) GreaterOrEqualTo(x, y *Value) *Value { |
| 145 | return b.cmp(x, ">=", y, llvm.IntUGE, llvm.IntSGE, llvm.FloatOGE) |
| 146 | } |
| 147 | |
| 148 | // LessOrEqualTo returns x <= y. The types of the two values must be equal. |
| 149 | func (b *Builder) LessOrEqualTo(x, y *Value) *Value { |
no test coverage detected