From: Chandler Carruth Date: Mon, 10 Mar 2014 03:52:47 +0000 (+0000) Subject: [AArch64] Fix a use of uninitialized memory introduced in r203125, X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=292fcee823a79982c00e726482f9cd2e0bb10639;p=oota-llvm.git [AArch64] Fix a use of uninitialized memory introduced in r203125, and caught by the MSan bootstrap build bot. This should hopefully get the bot green at long last. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203441 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/AArch64/AArch64Subtarget.cpp b/lib/Target/AArch64/AArch64Subtarget.cpp index b029c60424c..9140bbdb412 100644 --- a/lib/Target/AArch64/AArch64Subtarget.cpp +++ b/lib/Target/AArch64/AArch64Subtarget.cpp @@ -30,9 +30,9 @@ void AArch64Subtarget::anchor() {} AArch64Subtarget::AArch64Subtarget(StringRef TT, StringRef CPU, StringRef FS, bool LittleEndian) - : AArch64GenSubtargetInfo(TT, CPU, FS), HasFPARMv8(false), HasNEON(false), - HasCrypto(false), TargetTriple(TT), CPUString(CPU), - IsLittleEndian(LittleEndian) { + : AArch64GenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others), + HasFPARMv8(false), HasNEON(false), HasCrypto(false), TargetTriple(TT), + CPUString(CPU), IsLittleEndian(LittleEndian) { initializeSubtargetFeatures(CPU, FS); }