mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-16 11:24:39 +00:00
[mips] Print warning when using register names not available in N32/64
Summary: The register names t4-t7 are not available in the N32 and N64 ABIs. This patch prints a warning, when those names are used in N32/64, along with a fix-it with the correct register names. Patch by Vasileios Kalintiris Reviewers: dsanders Reviewed By: dsanders Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D5272 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218989 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -30,3 +30,7 @@ SMLoc AsmToken::getLoc() const {
|
||||
SMLoc AsmToken::getEndLoc() const {
|
||||
return SMLoc::getFromPointer(Str.data() + Str.size());
|
||||
}
|
||||
|
||||
SMRange AsmToken::getLocRange() const {
|
||||
return SMRange(getLoc(), getEndLoc());
|
||||
}
|
||||
|
Reference in New Issue
Block a user