| 
76 | 76 | 	ComdatSelectionKind C.LLVMComdatSelectionKind  | 
77 | 77 | 	IntPredicate        C.LLVMIntPredicate  | 
78 | 78 | 	FloatPredicate      C.LLVMRealPredicate  | 
79 |  | -	LandingPadClause    C.LLVMLandingPadClauseTy  | 
80 | 79 | 	InlineAsmDialect    C.LLVMInlineAsmDialect  | 
81 | 80 | )  | 
82 | 81 | 
 
  | 
@@ -344,15 +343,6 @@ const (  | 
344 | 343 | 	FloatPredicateTrue  FloatPredicate = C.LLVMRealPredicateTrue  | 
345 | 344 | )  | 
346 | 345 | 
 
  | 
347 |  | -//-------------------------------------------------------------------------  | 
348 |  | -// llvm.LandingPadClause  | 
349 |  | -//-------------------------------------------------------------------------  | 
350 |  | - | 
351 |  | -const (  | 
352 |  | -	LandingPadCatch  LandingPadClause = C.LLVMLandingPadCatch  | 
353 |  | -	LandingPadFilter LandingPadClause = C.LLVMLandingPadFilter  | 
354 |  | -)  | 
355 |  | - | 
356 | 346 | //-------------------------------------------------------------------------  | 
357 | 347 | // llvm.InlineAsmDialect  | 
358 | 348 | //-------------------------------------------------------------------------  | 
@@ -928,9 +918,6 @@ func ConstNUWAdd(lhs, rhs Value) (v Value) { v.C = C.LLVMConstNUWAdd(lhs.C, rhs.  | 
928 | 918 | func ConstSub(lhs, rhs Value) (v Value)    { v.C = C.LLVMConstSub(lhs.C, rhs.C); return }  | 
929 | 919 | func ConstNSWSub(lhs, rhs Value) (v Value) { v.C = C.LLVMConstNSWSub(lhs.C, rhs.C); return }  | 
930 | 920 | func ConstNUWSub(lhs, rhs Value) (v Value) { v.C = C.LLVMConstNUWSub(lhs.C, rhs.C); return }  | 
931 |  | -func ConstMul(lhs, rhs Value) (v Value)    { v.C = C.LLVMConstMul(lhs.C, rhs.C); return }  | 
932 |  | -func ConstNSWMul(lhs, rhs Value) (v Value) { v.C = C.LLVMConstNSWMul(lhs.C, rhs.C); return }  | 
933 |  | -func ConstNUWMul(lhs, rhs Value) (v Value) { v.C = C.LLVMConstNUWMul(lhs.C, rhs.C); return }  | 
934 | 921 | func ConstXor(lhs, rhs Value) (v Value)    { v.C = C.LLVMConstXor(lhs.C, rhs.C); return }  | 
935 | 922 | 
 
  | 
936 | 923 | func ConstGEP(t Type, v Value, indices []Value) (rv Value) {  | 
 | 
0 commit comments