From 9de1ac267e197d40cec7a14041f2bf69498536c9 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Mon, 9 Aug 2010 19:19:36 +0000 Subject: [PATCH] Explicitly initialize SlowFPBrcc and Pref32BitThumb to false. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110587 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMSubtarget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp index 10fd257055f..52913e9db6e 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. -- 2.34.1