summary refs log tree commit diff
path: root/src/test/ui/inline-asm-bad-operand.stderr
blob: 1a99aa28f584ada4105e95324569404c7b9d5a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
error[E0669]: invalid value for constraint in inline assembly
  --> $DIR/inline-asm-bad-operand.rs:31:24
   |
LL |         asm!("" :: "r"("")); //~ ERROR E0669
   |                        ^^

error[E0669]: invalid value for constraint in inline assembly
  --> $DIR/inline-asm-bad-operand.rs:36:32
   |
LL |         asm!("ret" : : "{rdi}"(target)); //~ ERROR E0669
   |                                ^^^^^^

error[E0669]: invalid value for constraint in inline assembly
  --> $DIR/inline-asm-bad-operand.rs:43:29
   |
LL |     unsafe { asm!("" :: "i"(hello)) }; //~ ERROR E0669
   |                             ^^^^^

error[E0669]: invalid value for constraint in inline assembly
  --> $DIR/inline-asm-bad-operand.rs:51:38
   |
LL |         asm!("movups $1, %xmm0"::"m"(arr)); //~ ERROR E0669
   |                                      ^^^

error[E0669]: invalid value for constraint in inline assembly
  --> $DIR/inline-asm-bad-operand.rs:58:32
   |
LL |         asm!("mov sp, $0"::"r"(addr)); //~ ERROR E0669
   |                                ^^^^

error[E0669]: invalid value for constraint in inline assembly
  --> $DIR/inline-asm-bad-operand.rs:65:32
   |
LL |         asm!("mov sp, $0"::"r"(addr), //~ ERROR E0669
   |                                ^^^^

error[E0669]: invalid value for constraint in inline assembly
  --> $DIR/inline-asm-bad-operand.rs:66:32
   |
LL |                            "r"("hello e0669")); //~ ERROR E0669
   |                                ^^^^^^^^^^^^^

error: aborting due to 7 previous errors

For more information about this error, try `rustc --explain E0669`.