@@ -45,41 +45,41 @@ LL | asm!("{}", out(reg) foo, clobber_abi("C"), clobber_abi("C"));
45
45
| | clobber_abi
46
46
| generic outputs
47
47
48
- error: expected one of `)`, `att_syntax`, `may_unwind`, or `raw`, found `nomem`
48
+ error: expected one of `)`, `att_syntax`, or `raw`, found `nomem`
49
49
--> $DIR/bad-options.rs:31:25
50
50
|
51
51
LL | global_asm!("", options(nomem));
52
- | ^^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
52
+ | ^^^^^ expected one of `)`, `att_syntax`, or `raw`
53
53
54
- error: expected one of `)`, `att_syntax`, `may_unwind`, or `raw`, found `readonly`
54
+ error: expected one of `)`, `att_syntax`, or `raw`, found `readonly`
55
55
--> $DIR/bad-options.rs:33:25
56
56
|
57
57
LL | global_asm!("", options(readonly));
58
- | ^^^^^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
58
+ | ^^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
59
59
60
- error: expected one of `)`, `att_syntax`, `may_unwind`, or `raw`, found `noreturn`
60
+ error: expected one of `)`, `att_syntax`, or `raw`, found `noreturn`
61
61
--> $DIR/bad-options.rs:35:25
62
62
|
63
63
LL | global_asm!("", options(noreturn));
64
- | ^^^^^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
64
+ | ^^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
65
65
66
- error: expected one of `)`, `att_syntax`, `may_unwind`, or `raw`, found `pure`
66
+ error: expected one of `)`, `att_syntax`, or `raw`, found `pure`
67
67
--> $DIR/bad-options.rs:37:25
68
68
|
69
69
LL | global_asm!("", options(pure));
70
- | ^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
70
+ | ^^^^ expected one of `)`, `att_syntax`, or `raw`
71
71
72
- error: expected one of `)`, `att_syntax`, `may_unwind`, or `raw`, found `nostack`
72
+ error: expected one of `)`, `att_syntax`, or `raw`, found `nostack`
73
73
--> $DIR/bad-options.rs:39:25
74
74
|
75
75
LL | global_asm!("", options(nostack));
76
- | ^^^^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
76
+ | ^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
77
77
78
- error: expected one of `)`, `att_syntax`, `may_unwind`, or `raw`, found `preserves_flags`
78
+ error: expected one of `)`, `att_syntax`, or `raw`, found `preserves_flags`
79
79
--> $DIR/bad-options.rs:41:25
80
80
|
81
81
LL | global_asm!("", options(preserves_flags));
82
- | ^^^^^^^^^^^^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
82
+ | ^^^^^^^^^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
83
83
84
84
error: invalid ABI for `clobber_abi`
85
85
--> $DIR/bad-options.rs:20:18
0 commit comments