Skip to content

Commit 54df8da

Browse files
committed
CI fixes after recent rebase changes
1 parent 71e599b commit 54df8da

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

tests/ui/asm/hexagon-register-pairs.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ add-core-stubs
1+
//@ add-minicore
22
//@ compile-flags: --target hexagon-unknown-linux-musl -C target-feature=+hvx-length128b
33
//@ needs-llvm-components: hexagon
44
//@ ignore-backends: gcc
@@ -7,6 +7,8 @@
77
#![crate_type = "lib"]
88
#![no_core]
99

10+
//~? WARN unstable feature specified for `-Ctarget-feature`: `hvx-length128b`
11+
1012
extern crate minicore;
1113
use minicore::*;
1214

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
warning: unstable feature specified for `-Ctarget-feature`: `hvx-length128b`
2+
|
3+
= note: this feature is not stably supported; its behavior can change in the future
4+
15
error: avoid using named labels in inline assembly
2-
--> $DIR/hexagon-register-pairs.rs:30:15
6+
--> $DIR/hexagon-register-pairs.rs:32:15
37
|
48
LL | asm!("label1: r7:6 = combine(#2, #3)");
59
| ^^^^^^
@@ -9,13 +13,13 @@ LL | asm!("label1: r7:6 = combine(#2, #3)");
913
= note: `#[deny(named_asm_labels)]` on by default
1014

1115
error: avoid using named labels in inline assembly
12-
--> $DIR/hexagon-register-pairs.rs:33:15
16+
--> $DIR/hexagon-register-pairs.rs:35:15
1317
|
1418
LL | asm!("hexagon_label: nop");
1519
| ^^^^^^^^^^^^^
1620
|
1721
= help: only local labels of the form `<number>:` should be used in inline asm
1822
= note: see the asm section of Rust By Example <https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels> for more information
1923

20-
error: aborting due to 2 previous errors
24+
error: aborting due to 2 previous errors; 1 warning emitted
2125

0 commit comments

Comments
 (0)