Initialize couple of fields.

llvm-svn: 119014
This commit is contained in:
Fariborz Jahanian 2010-11-13 23:48:30 +00:00
parent 9b4dc09746
commit 9ffe24f186
1 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@ using namespace clang;
using namespace CodeGen;
CGBlockInfo::CGBlockInfo(const char *N)
: Name(N), CXXThisRef(0), NeedsObjCSelf(false) {
: Name(N), CXXThisRef(0), NeedsObjCSelf(false),
HasCXXObject(false), BlockHasCopyDispose(false) {
// Skip asm prefix, if any.
if (Name && Name[0] == '\01')