mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Fix 80-column violations and whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124819 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d538e24922
commit
69df72367f
@ -550,7 +550,8 @@ static unsigned MatchRegisterName(StringRef Name);
|
||||
|
||||
/// }
|
||||
|
||||
bool ARMAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) {
|
||||
bool ARMAsmParser::ParseRegister(unsigned &RegNo,
|
||||
SMLoc &StartLoc, SMLoc &EndLoc) {
|
||||
RegNo = TryParseRegister();
|
||||
|
||||
return (RegNo == (unsigned)-1);
|
||||
@ -578,12 +579,11 @@ int ARMAsmParser::TryParseRegister() {
|
||||
.Default(0);
|
||||
}
|
||||
if (!RegNum) return -1;
|
||||
|
||||
|
||||
Parser.Lex(); // Eat identifier token.
|
||||
return RegNum;
|
||||
}
|
||||
|
||||
|
||||
/// Try to parse a register name. The token must be an Identifier when called.
|
||||
/// If it's a register, an AsmOperand is created. Another AsmOperand is created
|
||||
/// if there is a "writeback". 'true' if it's not a register.
|
||||
|
@ -386,7 +386,8 @@ ParseMemory(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return Op;
|
||||
}
|
||||
|
||||
bool MBlazeAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) {
|
||||
bool MBlazeAsmParser::ParseRegister(unsigned &RegNo,
|
||||
SMLoc &StartLoc, SMLoc &EndLoc) {
|
||||
return (ParseRegister(RegNo) == 0);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user