File tree 3 files changed +4
-0
lines changed
librustc_codegen_llvm/llvm
3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,7 @@ pub enum Attribute {
122
122
SanitizeThread = 20 ,
123
123
SanitizeAddress = 21 ,
124
124
SanitizeMemory = 22 ,
125
+ NonLazyBind = 23 ,
125
126
}
126
127
127
128
/// LLVMIntPredicate
Original file line number Diff line number Diff line change @@ -178,6 +178,8 @@ static Attribute::AttrKind fromRust(LLVMRustAttribute Kind) {
178
178
return Attribute::SanitizeAddress;
179
179
case SanitizeMemory:
180
180
return Attribute::SanitizeMemory;
181
+ case NonLazyBind:
182
+ return Attribute::NonLazyBind;
181
183
}
182
184
report_fatal_error (" bad AttributeKind" );
183
185
}
Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ enum LLVMRustAttribute {
97
97
SanitizeThread = 20 ,
98
98
SanitizeAddress = 21 ,
99
99
SanitizeMemory = 22 ,
100
+ NonLazyBind = 23 ,
100
101
};
101
102
102
103
typedef struct OpaqueRustString *RustStringRef;
You can’t perform that action at this time.
0 commit comments