blob: a0e9a56eac2c477b9d03d7419d12cf3c2c5e940f [file]
error[E0539]: malformed `instruction_set` attribute input
--> $DIR/instruction-set.rs:21:1
|
LL | #[instruction_set(arm)]
| ^^^^^^^^^^^^^^^^^^---^^
| |
| valid arguments are `arm::a32` or `arm::t32`
|
= note: for more information, visit <https://doc.rust-lang.org/reference/attributes/codegen.html#the-instruction_set-attribute>
help: must be of the form
|
LL - #[instruction_set(arm)]
LL + #[instruction_set(set)]
|
error: expected identifier, found `<eof>`
--> $DIR/instruction-set.rs:26:22
|
LL | #[instruction_set(arm::)]
| ^^ expected identifier
error[E0539]: malformed `instruction_set` attribute input
--> $DIR/instruction-set.rs:31:1
|
LL | #[instruction_set(arm::magic)]
| ^^^^^^^^^^^^^^^^^^^^^^^-----^^
| |
| valid arguments are `a32` or `t32`
|
= note: for more information, visit <https://doc.rust-lang.org/reference/attributes/codegen.html#the-instruction_set-attribute>
help: must be of the form
|
LL - #[instruction_set(arm::magic)]
LL + #[instruction_set(set)]
|
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0539`.