diff options
author | Eric Christopher <echristo@gmail.com> | 2014-10-03 00:10:03 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-10-03 00:10:03 +0000 |
commit | a94e592e49fb8abf818b4922a615bcf6996492aa (patch) | |
tree | dc56538d251dc2b3f8a52ed14cfcee8f307184a7 /llvm/lib/Target/ARM/ARMTargetMachine.cpp | |
parent | 4dca3ce4b09fe8d5828afc47d516d160d1c01d98 (diff) | |
download | bcm5719-llvm-a94e592e49fb8abf818b4922a615bcf6996492aa.tar.gz bcm5719-llvm-a94e592e49fb8abf818b4922a615bcf6996492aa.zip |
We can grab the options struct from the TargetMachine, no need to
pass it down in the constructor.
llvm-svn: 218929
Diffstat (limited to 'llvm/lib/Target/ARM/ARMTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetMachine.cpp b/llvm/lib/Target/ARM/ARMTargetMachine.cpp index 184440a12da..c67b2df8d4a 100644 --- a/llvm/lib/Target/ARM/ARMTargetMachine.cpp +++ b/llvm/lib/Target/ARM/ARMTargetMachine.cpp @@ -51,7 +51,7 @@ ARMBaseTargetMachine::ARMBaseTargetMachine(const Target &T, StringRef TT, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle) : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL), - Subtarget(TT, CPU, FS, *this, isLittle, Options) { + Subtarget(TT, CPU, FS, *this, isLittle) { // Default to triple-appropriate float ABI if (Options.FloatABIType == FloatABI::Default) |