blob: 09dd73d6c078c70586707b0aea4acc150d4a8be8 [file] [edit]
error[E0539]: malformed `instruction_set` attribute input
--> $DIR/instruction-set.rs:21:3
|
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:3
|
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`.