diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-11-13 23:48:30 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-11-13 23:48:30 +0000 |
commit | 9ffe24f186fe27cae78e79fcd4facc7adb2729de (patch) | |
tree | 8b93eed74065e564d875d01797dab587e728ea08 /clang/lib/CodeGen/CGBlocks.cpp | |
parent | 9b4dc097463d79fc6a4caf5b4cb51a0b7b185c77 (diff) | |
download | bcm5719-llvm-9ffe24f186fe27cae78e79fcd4facc7adb2729de.tar.gz bcm5719-llvm-9ffe24f186fe27cae78e79fcd4facc7adb2729de.zip |
Initialize couple of fields.
llvm-svn: 119014
Diffstat (limited to 'clang/lib/CodeGen/CGBlocks.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGBlocks.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGBlocks.cpp b/clang/lib/CodeGen/CGBlocks.cpp index b186c963259..4d68adc8cbd 100644 --- a/clang/lib/CodeGen/CGBlocks.cpp +++ b/clang/lib/CodeGen/CGBlocks.cpp @@ -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') |