aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCParser
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-07-19 00:04:14 +0000
committerBill Wendling <isanbard@gmail.com>2012-07-19 00:04:14 +0000
commit96cb1128528a512f1ef9c28ae5e1b78a98dcc505 (patch)
tree5f27f3a09526ed56acdfa58e73e1c6714ef641ad /lib/MC/MCParser
parent8c51e3995d8b8fd1cd88ef18548be4b8f8e3d6f1 (diff)
downloadexternal_llvm-96cb1128528a512f1ef9c28ae5e1b78a98dcc505.zip
external_llvm-96cb1128528a512f1ef9c28ae5e1b78a98dcc505.tar.gz
external_llvm-96cb1128528a512f1ef9c28ae5e1b78a98dcc505.tar.bz2
Remove tabs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160475 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCParser')
-rw-r--r--lib/MC/MCParser/AsmParser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/MC/MCParser/AsmParser.cpp b/lib/MC/MCParser/AsmParser.cpp
index a559158..63ebfb6 100644
--- a/lib/MC/MCParser/AsmParser.cpp
+++ b/lib/MC/MCParser/AsmParser.cpp
@@ -2998,7 +2998,7 @@ bool GenericAsmParser::ParseDirectiveCFISameValue(StringRef IDVal,
/// ParseDirectiveCFIRestore
/// ::= .cfi_restore register
bool GenericAsmParser::ParseDirectiveCFIRestore(StringRef IDVal,
- SMLoc DirectiveLoc) {
+ SMLoc DirectiveLoc) {
int64_t Register = 0;
if (ParseRegisterOrRegisterNumber(Register, DirectiveLoc))
return true;
@@ -3011,7 +3011,7 @@ bool GenericAsmParser::ParseDirectiveCFIRestore(StringRef IDVal,
/// ParseDirectiveCFIEscape
/// ::= .cfi_escape expression[,...]
bool GenericAsmParser::ParseDirectiveCFIEscape(StringRef IDVal,
- SMLoc DirectiveLoc) {
+ SMLoc DirectiveLoc) {
std::string Values;
int64_t CurrValue;
if (getParser().ParseAbsoluteExpression(CurrValue))