2019-01-01 17:21:05 -06:00
|
|
|
error: attribute must be of the form `#[target_feature(enable = "name")]`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/target-feature-wrong.rs:16:1
|
2018-01-05 15:26:26 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[target_feature = "+sse2"]
|
2018-01-05 15:26:26 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the feature named `foo` is not valid for this target
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/target-feature-wrong.rs:18:18
|
2018-01-05 15:26:26 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[target_feature(enable = "foo")]
|
2018-01-05 15:26:26 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: #[target_feature(..)] only accepts sub-keys of `enable` currently
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/target-feature-wrong.rs:20:18
|
2018-01-05 15:26:26 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[target_feature(bar)]
|
2018-01-05 15:26:26 -06:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: #[target_feature(..)] only accepts sub-keys of `enable` currently
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/target-feature-wrong.rs:22:18
|
2018-01-05 15:26:26 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[target_feature(disable = "baz")]
|
2018-01-05 15:26:26 -06:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: #[target_feature(..)] can only be applied to `unsafe` function
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/target-feature-wrong.rs:26:1
|
2018-01-05 15:26:26 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[target_feature(enable = "sse2")]
|
2018-01-05 15:26:26 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-03-05 10:12:13 -06:00
|
|
|
error: attribute should be applied to a function
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/target-feature-wrong.rs:30:1
|
2018-03-05 10:12:13 -06:00
|
|
|
|
|
|
|
|
LL | #[target_feature(enable = "sse2")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
LL | //~^ ERROR: should be applied to a function
|
|
|
|
LL | mod another {}
|
|
|
|
| -------------- not a function
|
|
|
|
|
2018-03-27 13:42:04 -05:00
|
|
|
error: cannot use #[inline(always)] with #[target_feature]
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/target-feature-wrong.rs:34:1
|
2018-03-27 13:42:04 -05:00
|
|
|
|
|
|
|
|
LL | #[inline(always)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-04-05 10:02:11 -05:00
|
|
|
error: aborting due to 7 previous errors
|
2018-01-05 15:26:26 -06:00
|
|
|
|