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 | 574940e16f5610a3cc5644376e2fcc3d78d75681 (patch) | |
| tree | 8d4d8c015d230e6b9999cfe53438569a163d82d0 /clang/lib/CodeGen | |
| parent | 7d0ba3464eac2ba7965ce6501ff7ad1a75de2771 (diff) | |
| download | bcm5719-llvm-574940e16f5610a3cc5644376e2fcc3d78d75681.tar.gz bcm5719-llvm-574940e16f5610a3cc5644376e2fcc3d78d75681.zip | |
Removed unnecessary initialization of a flag which
somehow got several block tests fail with a linux built
compiler.
llvm-svn: 119027
Diffstat (limited to 'clang/lib/CodeGen')
| -rw-r--r-- | clang/lib/CodeGen/CGBlocks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGBlocks.cpp b/clang/lib/CodeGen/CGBlocks.cpp index 4d68adc8cbd..a6929649efa 100644 --- a/clang/lib/CodeGen/CGBlocks.cpp +++ b/clang/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') |

