aboutsummaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-02-09 00:40:07 +0000
committerChris Lattner <sabre@nondot.org>2010-02-09 00:40:07 +0000
commit8a872d0215b04e13f0c63274d385ebc5ad9f167e (patch)
treee1c6bbd3c17fe64f7bd9f6b6d649ac09b1e899ba /include/llvm
parent1926b648e132631282aa15d25e4f8278f87c24fb (diff)
stop using reserved identifiers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95630 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/MC/MCParser/AsmParser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/MC/MCParser/AsmParser.h b/include/llvm/MC/MCParser/AsmParser.h
index f82584c8fc..829604c81f 100644
--- a/include/llvm/MC/MCParser/AsmParser.h
+++ b/include/llvm/MC/MCParser/AsmParser.h
@@ -61,8 +61,8 @@ private:
/// in the directive name and the location of the directive keyword.
StringMap<bool(AsmParser::*)(StringRef, SMLoc)> DirectiveMap;
public:
- AsmParser(SourceMgr &_SM, MCContext &_Ctx, MCStreamer &_Out,
- const MCAsmInfo &_MAI);
+ AsmParser(SourceMgr &SM, MCContext &Ctx, MCStreamer &Out,
+ const MCAsmInfo &MAI);
~AsmParser();
bool Run();