diff options
author | Chris Lattner <sabre@nondot.org> | 2010-10-30 04:57:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-10-30 04:57:14 +0000 |
commit | 9a82e7027549bfc8655b090b37e709baa3cd3240 (patch) | |
tree | 4f3f2228c2005f94318fe5d5205f8df325b8fd08 /lib | |
parent | dba34d874d0ac8c334f03d770b80c6ee2f12808a (diff) |
stay out of the reserved namespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117773 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/X86/AsmParser/X86AsmParser.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Target/X86/AsmParser/X86AsmParser.cpp b/lib/Target/X86/AsmParser/X86AsmParser.cpp index 3bfa420528..4a8a63e284 100644 --- a/lib/Target/X86/AsmParser/X86AsmParser.cpp +++ b/lib/Target/X86/AsmParser/X86AsmParser.cpp @@ -64,8 +64,8 @@ private: /// } public: - X86ATTAsmParser(const Target &T, MCAsmParser &_Parser, TargetMachine &TM) - : TargetAsmParser(T), Parser(_Parser), TM(TM) { + X86ATTAsmParser(const Target &T, MCAsmParser &parser, TargetMachine &TM) + : TargetAsmParser(T), Parser(parser), TM(TM) { // Initialize the set of available features. setAvailableFeatures(ComputeAvailableFeatures( @@ -80,16 +80,16 @@ public: class X86_32ATTAsmParser : public X86ATTAsmParser { public: - X86_32ATTAsmParser(const Target &T, MCAsmParser &_Parser, TargetMachine &TM) - : X86ATTAsmParser(T, _Parser, TM) { + X86_32ATTAsmParser(const Target &T, MCAsmParser &Parser, TargetMachine &TM) + : X86ATTAsmParser(T, Parser, TM) { Is64Bit = false; } }; class X86_64ATTAsmParser : public X86ATTAsmParser { public: - X86_64ATTAsmParser(const Target &T, MCAsmParser &_Parser, TargetMachine &TM) - : X86ATTAsmParser(T, _Parser, TM) { + X86_64ATTAsmParser(const Target &T, MCAsmParser &Parser, TargetMachine &TM) + : X86ATTAsmParser(T, Parser, TM) { Is64Bit = true; } }; |