summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-08-09 19:19:36 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-08-09 19:19:36 +0000
commit9de1ac267e197d40cec7a14041f2bf69498536c9 (patch)
tree2050a6b104c027dadb9ca9e618cc6b1b56744509 /lib
parente03161c28e361d1813dd0085cacd596f5cde7327 (diff)
downloadllvm-9de1ac267e197d40cec7a14041f2bf69498536c9.tar.gz
llvm-9de1ac267e197d40cec7a14041f2bf69498536c9.tar.bz2
llvm-9de1ac267e197d40cec7a14041f2bf69498536c9.tar.xz
Explicitly initialize SlowFPBrcc and Pref32BitThumb to false.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110587 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMSubtarget.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp
index 10fd257055..52913e9db6 100644
--- a/lib/Target/ARM/ARMSubtarget.cpp
+++ b/lib/Target/ARM/ARMSubtarget.cpp
@@ -33,6 +33,7 @@ ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &FS,
, ARMFPUType(None)
, UseNEONForSinglePrecisionFP(false)
, SlowVMLx(false)
+ , SlowFPBrcc(false)
, IsThumb(isT)
, ThumbMode(Thumb1)
, PostRAScheduler(false)
@@ -41,6 +42,7 @@ ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &FS,
, HasFP16(false)
, HasHardwareDivide(false)
, HasT2ExtractPack(false)
+ , Pref32BitThumb(false)
, stackAlignment(4)
, CPUString("generic")
, TargetType(isELF) // Default to ELF unless otherwise specified.