Skip to content

Commit f367567

Browse files
ignore stage1 testing
1 parent 5d52ef5 commit f367567

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

src/test/ui/E0660.rs

+4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// ignore-stage1
12+
1113
#![feature(asm)]
1214

1315
fn main() {
1416
let a;
1517
asm!("nop" "nop");
18+
//~^ ERROR E0660
1619
asm!("nop" "nop" : "=r"(a));
20+
//~^ ERROR E0660
1721
}

src/test/ui/E0660.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
error[E0660]: malformed inline assembly
2-
--> $DIR/E0660.rs:15:5
2+
--> $DIR/E0660.rs:17:5
33
|
44
LL | asm!("nop" "nop");
55
| ^^^^^^^^^^^^^^^^^^
66

77
error[E0660]: malformed inline assembly
8-
--> $DIR/E0660.rs:16:5
8+
--> $DIR/E0660.rs:19:5
99
|
1010
LL | asm!("nop" "nop" : "=r"(a));
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

src/test/ui/E0661.rs

+3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// ignore-stage1
12+
1113
#![feature(asm)]
1214

1315
fn main() {
1416
let a;
1517
asm!("nop" : "r"(a));
18+
//~^ ERROR E0661
1619
}

src/test/ui/E0661.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0661]: output operand constraint lacks '=' or '+'
2-
--> $DIR/E0661.rs:15:18
2+
--> $DIR/E0661.rs:17:18
33
|
44
LL | asm!("nop" : "r"(a));
55
| ^^^

0 commit comments

Comments
 (0)