rust/src/test/ui/asm/inline-syntax.arm.stderr

75 lines
1.5 KiB
Text
Raw Normal View History

error: unknown directive
2021-04-11 15:11:02 +01:00
--> $DIR/inline-syntax.rs:25:15
|
LL | asm!(".intel_syntax noprefix", "nop");
| ^
|
note: instantiated into assembly here
--> <inline asm>:1:2
|
LL | .intel_syntax noprefix
| ^
error: unknown directive
2021-04-11 15:11:02 +01:00
--> $DIR/inline-syntax.rs:28:15
|
LL | asm!(".intel_syntax aaa noprefix", "nop");
| ^
|
note: instantiated into assembly here
--> <inline asm>:1:2
|
LL | .intel_syntax aaa noprefix
| ^
error: unknown directive
2021-04-11 15:11:02 +01:00
--> $DIR/inline-syntax.rs:31:15
2021-03-08 23:48:08 -05:00
|
LL | asm!(".att_syntax noprefix", "nop");
| ^
|
note: instantiated into assembly here
--> <inline asm>:1:2
|
LL | .att_syntax noprefix
| ^
2021-03-08 23:48:08 -05:00
error: unknown directive
2021-04-11 15:11:02 +01:00
--> $DIR/inline-syntax.rs:34:15
2021-03-08 23:48:08 -05:00
|
LL | asm!(".att_syntax bbb noprefix", "nop");
| ^
|
note: instantiated into assembly here
--> <inline asm>:1:2
|
LL | .att_syntax bbb noprefix
| ^
error: unknown directive
2021-04-11 15:11:02 +01:00
--> $DIR/inline-syntax.rs:37:15
|
LL | asm!(".intel_syntax noprefix; nop");
| ^
|
note: instantiated into assembly here
--> <inline asm>:1:2
|
LL | .intel_syntax noprefix; nop
| ^
error: unknown directive
2021-04-11 15:11:02 +01:00
--> $DIR/inline-syntax.rs:43:13
|
LL | .intel_syntax noprefix
| ^
|
note: instantiated into assembly here
--> <inline asm>:2:13
|
LL | .intel_syntax noprefix
| ^
2021-03-08 23:48:08 -05:00
error: aborting due to 6 previous errors
2021-03-08 23:48:08 -05:00