summary refs log tree commit diff
path: root/src/test/ui/inline-asm-bad-operand.stderr
blob: 3bb1cdda24977bd9b23673eb43c290a1f47737c5 (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:21:24
   |
LL |         asm!("" :: "r"(""));
   |                        ^^

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

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

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

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

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

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

error: aborting due to 7 previous errors

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