forked from ebfe/syscall.rs
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port several platforms from
llvm_asm
to asm
where the change is t…
…rivial The reason for this change is that `llvm_asm` is removed from nightly, so it doesn't compile anymore on any current compiler, while `asm` is being stabelised (currently stable on beta). The major ommission in this commit is the linux x86 (32 bit) platform. The new `asm` macro doesn't allow the esi and ebp registers to be used as inputs or outputs or clobbers, which makes the port non-trivial for this platform. Similarly on armeabi the r6 register is not allowed as input, output or clobber.
- Loading branch information
Showing
6 changed files
with
348 additions
and
189 deletions.
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
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
Oops, something went wrong.