]> git.lizzy.rs Git - rust.git/blob - src/test/ui/asm/inline-syntax.arm.stderr
Rollup merge of #99787 - aDotInTheVoid:rdj-dyn, r=camelid,notriddle,GuillaumeGomez
[rust.git] / src / test / ui / asm / inline-syntax.arm.stderr
1 error: unknown directive
2 .intel_syntax noprefix
3 ^
4 error: unknown directive
5 .intel_syntax noprefix
6 ^
7 error: unknown directive
8    |
9 note: instantiated into assembly here
10   --> <inline asm>:1:1
11    |
12 LL | .intel_syntax noprefix
13    | ^
14
15 error: unknown directive
16   --> $DIR/inline-syntax.rs:32:15
17    |
18 LL |         asm!(".intel_syntax noprefix", "nop");
19    |               ^
20    |
21 note: instantiated into assembly here
22   --> <inline asm>:1:2
23    |
24 LL |     .intel_syntax noprefix
25    |     ^
26
27 error: unknown directive
28   --> $DIR/inline-syntax.rs:35:15
29    |
30 LL |         asm!(".intel_syntax aaa noprefix", "nop");
31    |               ^
32    |
33 note: instantiated into assembly here
34   --> <inline asm>:1:2
35    |
36 LL |     .intel_syntax aaa noprefix
37    |     ^
38
39 error: unknown directive
40   --> $DIR/inline-syntax.rs:38:15
41    |
42 LL |         asm!(".att_syntax noprefix", "nop");
43    |               ^
44    |
45 note: instantiated into assembly here
46   --> <inline asm>:1:2
47    |
48 LL |     .att_syntax noprefix
49    |     ^
50
51 error: unknown directive
52   --> $DIR/inline-syntax.rs:41:15
53    |
54 LL |         asm!(".att_syntax bbb noprefix", "nop");
55    |               ^
56    |
57 note: instantiated into assembly here
58   --> <inline asm>:1:2
59    |
60 LL |     .att_syntax bbb noprefix
61    |     ^
62
63 error: unknown directive
64   --> $DIR/inline-syntax.rs:44:15
65    |
66 LL |         asm!(".intel_syntax noprefix; nop");
67    |               ^
68    |
69 note: instantiated into assembly here
70   --> <inline asm>:1:2
71    |
72 LL |     .intel_syntax noprefix; nop
73    |     ^
74
75 error: unknown directive
76   --> $DIR/inline-syntax.rs:50:13
77    |
78 LL |             .intel_syntax noprefix
79    |             ^
80    |
81 note: instantiated into assembly here
82   --> <inline asm>:2:13
83    |
84 LL |             .intel_syntax noprefix
85    |             ^
86
87 error: aborting due to 7 previous errors
88