Skip to content

Commit ed19337

Browse files
QuLogicaykevl
authored andcommitted
Remove ConstFNeg
It's been removed in LLVM 16: llvm/llvm-project@96cb7c2
1 parent 71df1cb commit ed19337

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

ir.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,6 @@ func SizeOf(t Type) (v Value) { v.C = C.LLVMSizeOf(t.C); return }
918918
func ConstNeg(v Value) (rv Value) { rv.C = C.LLVMConstNeg(v.C); return }
919919
func ConstNSWNeg(v Value) (rv Value) { rv.C = C.LLVMConstNSWNeg(v.C); return }
920920
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 }
922921
func ConstNot(v Value) (rv Value) { rv.C = C.LLVMConstNot(v.C); return }
923922
func ConstAdd(lhs, rhs Value) (v Value) { v.C = C.LLVMConstAdd(lhs.C, rhs.C); return }
924923
func ConstNSWAdd(lhs, rhs Value) (v Value) { v.C = C.LLVMConstNSWAdd(lhs.C, rhs.C); return }

0 commit comments

Comments
 (0)