@@ -98,11 +98,11 @@ error: register class `preg` can only be used as a clobber, not as an input or o
9898LL | asm!("{}", out(preg) _);
9999 | ^^^^^^^^^^^
100100
101- error: register `x0 ` conflicts with register `x0`
101+ error: register `w0 ` conflicts with register `x0`
102102 --> $DIR/bad-reg.rs:50:32
103103 |
104104LL | asm!("", in("x0") foo, in("w0") bar);
105- | ------------ ^^^^^^^^^^^^ register `x0 `
105+ | ------------ ^^^^^^^^^^^^ register `w0 `
106106 | |
107107 | register `x0`
108108
@@ -120,19 +120,19 @@ help: use `lateout` instead of `out` to avoid conflict
120120LL | asm!("", in("x0") foo, out("x0") bar);
121121 | ^^^^^^^^^^^^
122122
123- error: register `v0 ` conflicts with register `v0`
123+ error: register `q0 ` conflicts with register `v0`
124124 --> $DIR/bad-reg.rs:55:32
125125 |
126126LL | asm!("", in("v0") foo, in("q0") bar);
127- | ------------ ^^^^^^^^^^^^ register `v0 `
127+ | ------------ ^^^^^^^^^^^^ register `q0 `
128128 | |
129129 | register `v0`
130130
131- error: register `v0 ` conflicts with register `v0`
131+ error: register `q0 ` conflicts with register `v0`
132132 --> $DIR/bad-reg.rs:57:32
133133 |
134134LL | asm!("", in("v0") foo, out("q0") bar);
135- | ------------ ^^^^^^^^^^^^^ register `v0 `
135+ | ------------ ^^^^^^^^^^^^^ register `q0 `
136136 | |
137137 | register `v0`
138138 |
0 commit comments