@@ -98,11 +98,11 @@ error: register class `preg` can only be used as a clobber, not as an input or o
98
98
LL | asm!("{}", out(preg) _);
99
99
| ^^^^^^^^^^^
100
100
101
- error: register `x0 ` conflicts with register `x0`
101
+ error: register `w0 ` conflicts with register `x0`
102
102
--> $DIR/bad-reg.rs:50:32
103
103
|
104
104
LL | asm!("", in("x0") foo, in("w0") bar);
105
- | ------------ ^^^^^^^^^^^^ register `x0 `
105
+ | ------------ ^^^^^^^^^^^^ register `w0 `
106
106
| |
107
107
| register `x0`
108
108
@@ -120,19 +120,19 @@ help: use `lateout` instead of `out` to avoid conflict
120
120
LL | asm!("", in("x0") foo, out("x0") bar);
121
121
| ^^^^^^^^^^^^
122
122
123
- error: register `v0 ` conflicts with register `v0`
123
+ error: register `q0 ` conflicts with register `v0`
124
124
--> $DIR/bad-reg.rs:55:32
125
125
|
126
126
LL | asm!("", in("v0") foo, in("q0") bar);
127
- | ------------ ^^^^^^^^^^^^ register `v0 `
127
+ | ------------ ^^^^^^^^^^^^ register `q0 `
128
128
| |
129
129
| register `v0`
130
130
131
- error: register `v0 ` conflicts with register `v0`
131
+ error: register `q0 ` conflicts with register `v0`
132
132
--> $DIR/bad-reg.rs:57:32
133
133
|
134
134
LL | asm!("", in("v0") foo, out("q0") bar);
135
- | ------------ ^^^^^^^^^^^^^ register `v0 `
135
+ | ------------ ^^^^^^^^^^^^^ register `q0 `
136
136
| |
137
137
| register `v0`
138
138
|
0 commit comments