From 57bca7b26ec916ca1b74b1408608a6c69a1aa422 Mon Sep 17 00:00:00 2001 From: Amara Emerson Date: Tue, 29 Oct 2013 16:54:52 +0000 Subject: [PATCH] [ARM] Make sure HasCRC is initialized to false in Subtarget. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193624 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMSubtarget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp index 02d938769a2..db9792a8362 100644 --- a/lib/Target/ARM/ARMSubtarget.cpp +++ b/lib/Target/ARM/ARMSubtarget.cpp @@ -112,6 +112,7 @@ void ARMSubtarget::initializeEnvironment() { HasPerfMon = false; HasTrustZone = false; HasCrypto = false; + HasCRC = false; AllowsUnalignedMem = false; Thumb2DSP = false; UseNaClTrap = false; -- 2.34.1