diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-11-14 05:25:15 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-11-14 05:25:15 +0000 |
commit | eec82172dc997a504c2f95a5d38fbe4ea5b37184 (patch) | |
tree | 93a12295c1c397e0f7b17d043ac63f5888944f26 /lib/CodeGen/CGBlocks.cpp | |
parent | 6c7b42faab83f5c91b1a9171c9002259ad361fe2 (diff) |
Removed unnecessary initialization of a flag which
somehow got several block tests fail with a linux built
compiler.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@119027 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGBlocks.cpp')
-rw-r--r-- | lib/CodeGen/CGBlocks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGBlocks.cpp b/lib/CodeGen/CGBlocks.cpp index 4d68adc8cb..a6929649ef 100644 --- a/lib/CodeGen/CGBlocks.cpp +++ b/lib/CodeGen/CGBlocks.cpp @@ -26,7 +26,7 @@ using namespace CodeGen; CGBlockInfo::CGBlockInfo(const char *N) : Name(N), CXXThisRef(0), NeedsObjCSelf(false), - HasCXXObject(false), BlockHasCopyDispose(false) { + HasCXXObject(false) { // Skip asm prefix, if any. if (Name && Name[0] == '\01') |