diff options
| author | Michael Goulet <michael@errs.io> | 2022-06-12 17:35:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-12 17:35:40 -0700 |
| commit | 6efaaed64b65cc271c0c0e6d0391fe02b2fd2523 (patch) | |
| tree | fa45c5769ab09fb82455870e1c9f408970ac7388 | |
| parent | 546c826f0ccaab36e897860205281f490db274e6 (diff) | |
| parent | 2f47edbf09561dce8628248d228abc2c240f4e57 (diff) | |
| download | rust-6efaaed64b65cc271c0c0e6d0391fe02b2fd2523.tar.gz rust-6efaaed64b65cc271c0c0e6d0391fe02b2fd2523.zip | |
Rollup merge of #97920 - bjorn3:test_annotation_fixes, r=Dylan-DPC
Fix some test annotations These are necessary for running the rustc test suite with cg_clif.
| -rw-r--r-- | src/test/ui/asm/x86_64/issue-82869.rs | 1 | ||||
| -rw-r--r-- | src/test/ui/asm/x86_64/issue-82869.stderr | 6 | ||||
| -rw-r--r-- | src/test/ui/drop/repeat-drop.rs | 1 |
3 files changed, 5 insertions, 3 deletions
diff --git a/src/test/ui/asm/x86_64/issue-82869.rs b/src/test/ui/asm/x86_64/issue-82869.rs index 3e632eaf88d..67933666eb5 100644 --- a/src/test/ui/asm/x86_64/issue-82869.rs +++ b/src/test/ui/asm/x86_64/issue-82869.rs @@ -1,3 +1,4 @@ +// needs-asm-support // only-x86_64 // Make sure rustc doesn't ICE on asm! for a foreign architecture. diff --git a/src/test/ui/asm/x86_64/issue-82869.stderr b/src/test/ui/asm/x86_64/issue-82869.stderr index 42be1b6de72..3cf9d6d1c1c 100644 --- a/src/test/ui/asm/x86_64/issue-82869.stderr +++ b/src/test/ui/asm/x86_64/issue-82869.stderr @@ -1,17 +1,17 @@ error: invalid register class `vreg`: unknown register class - --> $DIR/issue-82869.rs:10:32 + --> $DIR/issue-82869.rs:11:32 | LL | asm!("add {:d}, {:d}, d0", out(vreg) c, in(vreg) a, in("d0") { | ^^^^^^^^^^^ error: invalid register class `vreg`: unknown register class - --> $DIR/issue-82869.rs:10:45 + --> $DIR/issue-82869.rs:11:45 | LL | asm!("add {:d}, {:d}, d0", out(vreg) c, in(vreg) a, in("d0") { | ^^^^^^^^^^ error: invalid register `d0`: unknown register - --> $DIR/issue-82869.rs:10:57 + --> $DIR/issue-82869.rs:11:57 | LL | asm!("add {:d}, {:d}, d0", out(vreg) c, in(vreg) a, in("d0") { | _________________________________________________________^ diff --git a/src/test/ui/drop/repeat-drop.rs b/src/test/ui/drop/repeat-drop.rs index 03e832adb3b..a43612e5d85 100644 --- a/src/test/ui/drop/repeat-drop.rs +++ b/src/test/ui/drop/repeat-drop.rs @@ -1,4 +1,5 @@ // run-pass +// needs-unwind // ignore-wasm32-bare no unwinding panic // ignore-avr no unwinding panic // ignore-nvptx64 no unwinding panic |
