diff options
| author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-08 11:26:50 +0000 |
|---|---|---|
| committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-08 11:26:50 +0000 |
| commit | 7641cf8e4de959540c2ce35ebc156b2967d97414 (patch) | |
| tree | b90be10b294e44d5b139168bf7f96a31d9807d03 /llvm/tools/llvm-mc | |
| parent | 611307108c278f54ac8b51910b1afdcb398697d5 (diff) | |
| download | bcm5719-llvm-7641cf8e4de959540c2ce35ebc156b2967d97414.tar.gz bcm5719-llvm-7641cf8e4de959540c2ce35ebc156b2967d97414.zip | |
Always initialize AsmConds.
llvm-svn: 78463
Diffstat (limited to 'llvm/tools/llvm-mc')
| -rw-r--r-- | llvm/tools/llvm-mc/AsmCond.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/tools/llvm-mc/AsmCond.h b/llvm/tools/llvm-mc/AsmCond.h index 17201b968fd..92a115eb803 100644 --- a/llvm/tools/llvm-mc/AsmCond.h +++ b/llvm/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 |

