Remove unused Target argument from AsmParser construction methods.

The argument is unused, and is a layering violation in any case.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137735 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Grosbach
2011-08-16 18:33:49 +00:00
parent ac29c0af3d
commit 1b84cce77f
6 changed files with 10 additions and 11 deletions

View File

@@ -24,7 +24,6 @@ class MCTargetAsmParser;
class SMLoc;
class SourceMgr;
class StringRef;
class Target;
class Twine;
/// MCAsmParser - Generic assembler parser interface, for use by target specific
@@ -131,7 +130,7 @@ public:
};
/// \brief Create an MCAsmParser instance.
MCAsmParser *createMCAsmParser(const Target &, SourceMgr &, MCContext &,
MCAsmParser *createMCAsmParser(SourceMgr &, MCContext &,
MCStreamer &, const MCAsmInfo &);
} // End llvm namespace