-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incorrect register conflict detection in asm!
This would previously incorrectly reject two subregisters that were distinct but part of the same larger register, for example `al` and `ah`.
- Loading branch information
Showing
3 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// compile-flags: --target armv7-unknown-linux-gnueabihf | ||
// needs-llvm-components: arm | ||
|
||
#![feature(no_core, lang_items, rustc_attrs)] | ||
#![no_core] | ||
|
||
#[rustc_builtin_macro] | ||
macro_rules! asm { | ||
() => {}; | ||
} | ||
#[lang = "sized"] | ||
trait Sized {} | ||
|
||
fn main() { | ||
unsafe { | ||
asm!("", out("d0") _, out("d1") _); | ||
asm!("", out("d0") _, out("s1") _); | ||
//~^ ERROR register `s1` conflicts with register `d0` | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
error: register `s1` conflicts with register `d0` | ||
--> $DIR/reg-conflict.rs:17:31 | ||
| | ||
LL | asm!("", out("d0") _, out("s1") _); | ||
| ----------- ^^^^^^^^^^^ register `s1` | ||
| | | ||
| register `d0` | ||
|
||
error: aborting due to previous error | ||
|