Skip to content

Commit e592aaa

Browse files
committed
remove invalid ignore-powerpc64le
1 parent 64af509 commit e592aaa

File tree

8 files changed

+23
-29
lines changed

8 files changed

+23
-29
lines changed

tests/codegen/global_asm.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
// ignore-mips64
1111
// ignore-msp430
1212
// ignore-powerpc64
13-
// ignore-powerpc64le
1413
// ignore-powerpc
1514
// ignore-r600
1615
// ignore-amdgcn

tests/codegen/global_asm_include.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
// ignore-mips64
1111
// ignore-msp430
1212
// ignore-powerpc64
13-
// ignore-powerpc64le
1413
// ignore-powerpc
1514
// ignore-r600
1615
// ignore-amdgcn

tests/codegen/global_asm_x2.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
// ignore-mips64
1111
// ignore-msp430
1212
// ignore-powerpc64
13-
// ignore-powerpc64le
1413
// ignore-powerpc
1514
// ignore-r600
1615
// ignore-amdgcn

tests/codegen/repr-transparent-aggregates-2.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// ignore-mips64
77
// ignore-powerpc
88
// ignore-powerpc64
9-
// ignore-powerpc64le
109
// ignore-riscv64 see codegen/riscv-abi
1110
// ignore-s390x
1211
// ignore-sparc

tests/ui/target-feature/gate.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// ignore-mips64
77
// ignore-powerpc
88
// ignore-powerpc64
9-
// ignore-powerpc64le
109
// ignore-riscv64
1110
// ignore-sparc
1211
// ignore-sparc64

tests/ui/target-feature/gate.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0658]: the target feature `avx512bw` is currently unstable
2-
--> $DIR/gate.rs:32:18
2+
--> $DIR/gate.rs:31:18
33
|
44
LL | #[target_feature(enable = "avx512bw")]
55
| ^^^^^^^^^^^^^^^^^^^

tests/ui/target-feature/invalid-attribute.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// ignore-mips64
77
// ignore-powerpc
88
// ignore-powerpc64
9-
// ignore-powerpc64le
109
// ignore-riscv64
1110
// ignore-s390x
1211
// ignore-sparc

tests/ui/target-feature/invalid-attribute.stderr

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
error: malformed `target_feature` attribute input
2-
--> $DIR/invalid-attribute.rs:32:1
2+
--> $DIR/invalid-attribute.rs:31:1
33
|
44
LL | #[target_feature = "+sse2"]
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: must be of the form: `#[target_feature(enable = "name")]`
66

77
error: attribute should be applied to a function definition
8-
--> $DIR/invalid-attribute.rs:17:1
8+
--> $DIR/invalid-attribute.rs:16:1
99
|
1010
LL | #[target_feature(enable = "sse2")]
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -14,7 +14,7 @@ LL | extern crate alloc;
1414
| ------------------- not a function definition
1515

1616
error: attribute should be applied to a function definition
17-
--> $DIR/invalid-attribute.rs:22:1
17+
--> $DIR/invalid-attribute.rs:21:1
1818
|
1919
LL | #[target_feature(enable = "sse2")]
2020
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -23,7 +23,7 @@ LL | use alloc::alloc::alloc;
2323
| ------------------------ not a function definition
2424

2525
error: attribute should be applied to a function definition
26-
--> $DIR/invalid-attribute.rs:27:1
26+
--> $DIR/invalid-attribute.rs:26:1
2727
|
2828
LL | #[target_feature(enable = "sse2")]
2929
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -32,7 +32,7 @@ LL | extern "Rust" {}
3232
| ---------------- not a function definition
3333

3434
error: attribute should be applied to a function definition
35-
--> $DIR/invalid-attribute.rs:49:1
35+
--> $DIR/invalid-attribute.rs:48:1
3636
|
3737
LL | #[target_feature(enable = "sse2")]
3838
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -41,7 +41,7 @@ LL | mod another {}
4141
| -------------- not a function definition
4242

4343
error: attribute should be applied to a function definition
44-
--> $DIR/invalid-attribute.rs:54:1
44+
--> $DIR/invalid-attribute.rs:53:1
4545
|
4646
LL | #[target_feature(enable = "sse2")]
4747
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -50,7 +50,7 @@ LL | const FOO: usize = 7;
5050
| --------------------- not a function definition
5151

5252
error: attribute should be applied to a function definition
53-
--> $DIR/invalid-attribute.rs:59:1
53+
--> $DIR/invalid-attribute.rs:58:1
5454
|
5555
LL | #[target_feature(enable = "sse2")]
5656
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -59,7 +59,7 @@ LL | struct Foo;
5959
| ----------- not a function definition
6060

6161
error: attribute should be applied to a function definition
62-
--> $DIR/invalid-attribute.rs:64:1
62+
--> $DIR/invalid-attribute.rs:63:1
6363
|
6464
LL | #[target_feature(enable = "sse2")]
6565
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -68,7 +68,7 @@ LL | enum Bar {}
6868
| ----------- not a function definition
6969

7070
error: attribute should be applied to a function definition
71-
--> $DIR/invalid-attribute.rs:69:1
71+
--> $DIR/invalid-attribute.rs:68:1
7272
|
7373
LL | #[target_feature(enable = "sse2")]
7474
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -81,7 +81,7 @@ LL | | }
8181
| |_- not a function definition
8282

8383
error: attribute should be applied to a function definition
84-
--> $DIR/invalid-attribute.rs:77:1
84+
--> $DIR/invalid-attribute.rs:76:1
8585
|
8686
LL | #[target_feature(enable = "sse2")]
8787
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -90,7 +90,7 @@ LL | type Uwu = ();
9090
| -------------- not a function definition
9191

9292
error: attribute should be applied to a function definition
93-
--> $DIR/invalid-attribute.rs:82:1
93+
--> $DIR/invalid-attribute.rs:81:1
9494
|
9595
LL | #[target_feature(enable = "sse2")]
9696
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -99,7 +99,7 @@ LL | trait Baz {}
9999
| ------------ not a function definition
100100

101101
error: attribute should be applied to a function definition
102-
--> $DIR/invalid-attribute.rs:92:1
102+
--> $DIR/invalid-attribute.rs:91:1
103103
|
104104
LL | #[target_feature(enable = "sse2")]
105105
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -108,7 +108,7 @@ LL | static A: () = ();
108108
| ------------------ not a function definition
109109

110110
error: attribute should be applied to a function definition
111-
--> $DIR/invalid-attribute.rs:97:1
111+
--> $DIR/invalid-attribute.rs:96:1
112112
|
113113
LL | #[target_feature(enable = "sse2")]
114114
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -117,7 +117,7 @@ LL | impl Quux for u8 {}
117117
| ------------------- not a function definition
118118

119119
error: attribute should be applied to a function definition
120-
--> $DIR/invalid-attribute.rs:102:1
120+
--> $DIR/invalid-attribute.rs:101:1
121121
|
122122
LL | #[target_feature(enable = "sse2")]
123123
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -126,7 +126,7 @@ LL | impl Foo {}
126126
| ----------- not a function definition
127127

128128
error: attribute should be applied to a function definition
129-
--> $DIR/invalid-attribute.rs:120:5
129+
--> $DIR/invalid-attribute.rs:119:5
130130
|
131131
LL | #[target_feature(enable = "sse2")]
132132
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -138,7 +138,7 @@ LL | | }
138138
| |_____- not a function definition
139139

140140
error: attribute should be applied to a function definition
141-
--> $DIR/invalid-attribute.rs:128:5
141+
--> $DIR/invalid-attribute.rs:127:5
142142
|
143143
LL | #[target_feature(enable = "sse2")]
144144
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -147,25 +147,25 @@ LL | || {};
147147
| ----- not a function definition
148148

149149
error: the feature named `foo` is not valid for this target
150-
--> $DIR/invalid-attribute.rs:34:18
150+
--> $DIR/invalid-attribute.rs:33:18
151151
|
152152
LL | #[target_feature(enable = "foo")]
153153
| ^^^^^^^^^^^^^^ `foo` is not valid for this target
154154

155155
error: malformed `target_feature` attribute input
156-
--> $DIR/invalid-attribute.rs:37:18
156+
--> $DIR/invalid-attribute.rs:36:18
157157
|
158158
LL | #[target_feature(bar)]
159159
| ^^^ help: must be of the form: `enable = ".."`
160160

161161
error: malformed `target_feature` attribute input
162-
--> $DIR/invalid-attribute.rs:39:18
162+
--> $DIR/invalid-attribute.rs:38:18
163163
|
164164
LL | #[target_feature(disable = "baz")]
165165
| ^^^^^^^^^^^^^^^ help: must be of the form: `enable = ".."`
166166

167167
error[E0658]: `#[target_feature(..)]` can only be applied to `unsafe` functions
168-
--> $DIR/invalid-attribute.rs:43:1
168+
--> $DIR/invalid-attribute.rs:42:1
169169
|
170170
LL | #[target_feature(enable = "sse2")]
171171
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -177,13 +177,13 @@ LL | fn bar() {}
177177
= help: add `#![feature(target_feature_11)]` to the crate attributes to enable
178178

179179
error: cannot use `#[inline(always)]` with `#[target_feature]`
180-
--> $DIR/invalid-attribute.rs:87:1
180+
--> $DIR/invalid-attribute.rs:86:1
181181
|
182182
LL | #[inline(always)]
183183
| ^^^^^^^^^^^^^^^^^
184184

185185
error[E0658]: `#[target_feature(..)]` can only be applied to `unsafe` functions
186-
--> $DIR/invalid-attribute.rs:112:5
186+
--> $DIR/invalid-attribute.rs:111:5
187187
|
188188
LL | #[target_feature(enable = "sse2")]
189189
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)