diff options
author | Colin LeMahieu <colinl@codeaurora.org> | 2015-07-27 21:56:53 +0000 |
---|---|---|
committer | Colin LeMahieu <colinl@codeaurora.org> | 2015-07-27 21:56:53 +0000 |
commit | fe2c8b80158aa9dca82179717b545049f139a914 (patch) | |
tree | 40a393620477cf76faf845a3751db4f15d5db355 /llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | |
parent | 4630de80c5a859330d94c057ce67b0d2b3be5c17 (diff) | |
download | bcm5719-llvm-fe2c8b80158aa9dca82179717b545049f139a914.tar.gz bcm5719-llvm-fe2c8b80158aa9dca82179717b545049f139a914.zip |
[llvm-mc] Pushing plumbing through for --fatal-warnings flag.
llvm-svn: 243334
Diffstat (limited to 'llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index f8f0eb2d4ba..8cc5a57a5e6 100644 --- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -349,7 +349,7 @@ public: ARMAsmParser(MCSubtargetInfo &STI, MCAsmParser &Parser, const MCInstrInfo &MII, const MCTargetOptions &Options) - : STI(STI), MII(MII), UC(Parser) { + : MCTargetAsmParser(Options), STI(STI), MII(MII), UC(Parser) { MCAsmParserExtension::Initialize(Parser); // Cache the MCRegisterInfo. |