LessOrEqualTo returns x <= y. The types of the two values must be equal.
(x, y *Value)
| 147 | |
| 148 | // LessOrEqualTo returns x <= y. The types of the two values must be equal. |
| 149 | func (b *Builder) LessOrEqualTo(x, y *Value) *Value { |
| 150 | return b.cmp(x, "<=", y, llvm.IntULE, llvm.IntSLE, llvm.FloatOLE) |
| 151 | } |
| 152 | |
| 153 | // Add returns x + y. The types of the two values must be equal. |
| 154 | func (b *Builder) Add(x, y *Value) *Value { |
no test coverage detected