Always initialize AsmConds.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78463 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2009-08-08 11:26:50 +00:00
parent fa1165abb8
commit 9a86159a20

View File

@ -31,6 +31,8 @@ public:
ConditionalAssemblyType TheCond;
bool CondMet;
bool Ignore;
AsmCond() : TheCond(NoCond), CondMet(false), Ignore(false) {}
};
} // end namespace llvm