We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71df1cb commit ed19337Copy full SHA for ed19337
ir.go
@@ -918,7 +918,6 @@ func SizeOf(t Type) (v Value) { v.C = C.LLVMSizeOf(t.C); return }
918
func ConstNeg(v Value) (rv Value) { rv.C = C.LLVMConstNeg(v.C); return }
919
func ConstNSWNeg(v Value) (rv Value) { rv.C = C.LLVMConstNSWNeg(v.C); return }
920
func ConstNUWNeg(v Value) (rv Value) { rv.C = C.LLVMConstNUWNeg(v.C); return }
921
-func ConstFNeg(v Value) (rv Value) { rv.C = C.LLVMConstFNeg(v.C); return }
922
func ConstNot(v Value) (rv Value) { rv.C = C.LLVMConstNot(v.C); return }
923
func ConstAdd(lhs, rhs Value) (v Value) { v.C = C.LLVMConstAdd(lhs.C, rhs.C); return }
924
func ConstNSWAdd(lhs, rhs Value) (v Value) { v.C = C.LLVMConstNSWAdd(lhs.C, rhs.C); return }
0 commit comments