From: Rafael Espindola Date: Wed, 15 Jan 2014 03:27:26 +0000 (+0000) Subject: Fix uninitialized variable. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=574df95d7ae58d9294662d513a66a77316329841;p=oota-llvm.git Fix uninitialized variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199288 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp b/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp index d94d33ad24f..909f9dc1596 100644 --- a/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp +++ b/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp @@ -65,7 +65,7 @@ void MipsTargetAsmStreamer::emitDirectiveOptionPic0() { } // This part is for ELF object output. -MipsTargetELFStreamer::MipsTargetELFStreamer() {} +MipsTargetELFStreamer::MipsTargetELFStreamer() : MicroMipsEnabled(false) {} void MipsTargetELFStreamer::emitLabel(MCSymbol *Symbol) { if (!isMicroMipsEnabled())