@@ -195,13 +195,13 @@ pub unsafe extern "C" fn compatible_cfg_attributes() {
195
195
#[ forbid( dead_code) ]
196
196
#[ naked]
197
197
pub unsafe extern "C" fn compatible_diagnostic_attributes ( ) {
198
- asm ! ( "" , options( noreturn, att_syntax ) ) ;
198
+ asm ! ( "" , options( noreturn, raw ) ) ;
199
199
}
200
200
201
201
#[ deprecated = "test" ]
202
202
#[ naked]
203
203
pub unsafe extern "C" fn compatible_deprecated_attributes ( ) {
204
- asm ! ( "" , options( noreturn, att_syntax ) ) ;
204
+ asm ! ( "" , options( noreturn, raw ) ) ;
205
205
}
206
206
207
207
#[ cfg( target_arch = "x86_64" ) ]
@@ -222,15 +222,16 @@ pub unsafe extern "C" fn compatible_must_use_attributes() -> u64 {
222
222
#[ no_mangle]
223
223
#[ naked]
224
224
pub unsafe extern "C" fn compatible_ffi_attributes_1 ( ) {
225
- asm ! ( "" , options( noreturn, att_syntax ) ) ;
225
+ asm ! ( "" , options( noreturn, raw ) ) ;
226
226
}
227
227
228
228
#[ cold]
229
229
#[ naked]
230
230
pub unsafe extern "C" fn compatible_codegen_attributes ( ) {
231
- asm ! ( "" , options( noreturn, att_syntax ) ) ;
231
+ asm ! ( "" , options( noreturn, raw ) ) ;
232
232
}
233
233
234
+ #[ cfg( target_arch = "x86_64" ) ]
234
235
#[ target_feature( enable = "sse2" ) ]
235
236
#[ naked]
236
237
pub unsafe extern "C" fn compatible_target_feature ( ) {
@@ -240,11 +241,11 @@ pub unsafe extern "C" fn compatible_target_feature() {
240
241
#[ doc = "foo bar baz" ]
241
242
#[ naked]
242
243
pub unsafe extern "C" fn compatible_doc_attributes ( ) {
243
- asm ! ( "" , options( noreturn, att_syntax ) ) ;
244
+ asm ! ( "" , options( noreturn, raw ) ) ;
244
245
}
245
246
246
247
#[ linkage = "external" ]
247
248
#[ naked]
248
249
pub unsafe extern "C" fn compatible_linkage ( ) {
249
- asm ! ( "" , options( noreturn, att_syntax ) ) ;
250
+ asm ! ( "" , options( noreturn, raw ) ) ;
250
251
}
0 commit comments