aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2009-08-08 11:26:50 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2009-08-08 11:26:50 +0000
commit2cf5dd519a676cc23b30f8b2164b6c40cd276f08 (patch)
tree4e830e6a1a6999199be44df81c488932b61aa1b3
parent19afc504956fad07e227fc6397f77944265f903e (diff)
downloadexternal_llvm-2cf5dd519a676cc23b30f8b2164b6c40cd276f08.zip
external_llvm-2cf5dd519a676cc23b30f8b2164b6c40cd276f08.tar.gz
external_llvm-2cf5dd519a676cc23b30f8b2164b6c40cd276f08.tar.bz2
Always initialize AsmConds.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78463 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/llvm-mc/AsmCond.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/llvm-mc/AsmCond.h b/tools/llvm-mc/AsmCond.h
index 17201b9..92a115e 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