From: Benjamin Kramer Date: Sat, 8 Aug 2009 11:26:50 +0000 (+0000) Subject: Always initialize AsmConds. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9a86159a20e0c185f87ef0572ba50af3c6936d4b;p=oota-llvm.git Always initialize AsmConds. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78463 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-mc/AsmCond.h b/tools/llvm-mc/AsmCond.h index 17201b968fd..92a115eb803 100644 --- a/tools/llvm-mc/AsmCond.h +++ b/tools/llvm-mc/AsmCond.h @@ -31,6 +31,8 @@ public: ConditionalAssemblyType TheCond; bool CondMet; bool Ignore; + + AsmCond() : TheCond(NoCond), CondMet(false), Ignore(false) {} }; } // end namespace llvm