@@ -45,41 +45,41 @@ LL | asm!("{}", out(reg) foo, clobber_abi("C"), clobber_abi("C"));
4545 | | clobber_abi
4646 | generic outputs
4747
48- error: expected one of `)`, `att_syntax`, `may_unwind`, or `raw`, found `nomem`
48+ error: expected one of `)`, `att_syntax`, or `raw`, found `nomem`
4949 --> $DIR/bad-options.rs:31:25
5050 |
5151LL | global_asm!("", options(nomem));
52- | ^^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
52+ | ^^^^^ expected one of `)`, `att_syntax`, or `raw`
5353
54- error: expected one of `)`, `att_syntax`, `may_unwind`, or `raw`, found `readonly`
54+ error: expected one of `)`, `att_syntax`, or `raw`, found `readonly`
5555 --> $DIR/bad-options.rs:33:25
5656 |
5757LL | global_asm!("", options(readonly));
58- | ^^^^^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
58+ | ^^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
5959
60- error: expected one of `)`, `att_syntax`, `may_unwind`, or `raw`, found `noreturn`
60+ error: expected one of `)`, `att_syntax`, or `raw`, found `noreturn`
6161 --> $DIR/bad-options.rs:35:25
6262 |
6363LL | global_asm!("", options(noreturn));
64- | ^^^^^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
64+ | ^^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
6565
66- error: expected one of `)`, `att_syntax`, `may_unwind`, or `raw`, found `pure`
66+ error: expected one of `)`, `att_syntax`, or `raw`, found `pure`
6767 --> $DIR/bad-options.rs:37:25
6868 |
6969LL | global_asm!("", options(pure));
70- | ^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
70+ | ^^^^ expected one of `)`, `att_syntax`, or `raw`
7171
72- error: expected one of `)`, `att_syntax`, `may_unwind`, or `raw`, found `nostack`
72+ error: expected one of `)`, `att_syntax`, or `raw`, found `nostack`
7373 --> $DIR/bad-options.rs:39:25
7474 |
7575LL | global_asm!("", options(nostack));
76- | ^^^^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
76+ | ^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
7777
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`
7979 --> $DIR/bad-options.rs:41:25
8080 |
8181LL | global_asm!("", options(preserves_flags));
82- | ^^^^^^^^^^^^^^^ expected one of `)`, `att_syntax`, `may_unwind`, or `raw`
82+ | ^^^^^^^^^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
8383
8484error: invalid ABI for `clobber_abi`
8585 --> $DIR/bad-options.rs:20:18
0 commit comments