Add safestack attribute to LLVMAttribute enum and Go bindings. Correct
[oota-llvm.git] / bindings / go / llvm / ir.go
index e5916a1bacf91150abaf8759c017dc0132ba9b75..1f00cd584730791cfcf69e11b7a98ab3416c70e7 100644 (file)
@@ -160,6 +160,8 @@ const (
        InAllocaAttribute           Attribute = 1 << 43
        NonNullAttribute            Attribute = 1 << 44
        JumpTableAttribute          Attribute = 1 << 45
+       ConvergentAttribute         Attribute = 1 << 46
+       SafeStackAttribute          Attribute = 1 << 47
 )
 
 //-------------------------------------------------------------------------