diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-06-22 16:43:25 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-06-22 16:43:25 +0000 |
commit | 34aace89335d175c3a87a47737fc841e9853767d (patch) | |
tree | bdd83908c487bd76affca3791c9b032ad7ace4a3 /lib/CodeGen/CGObjC.cpp | |
parent | 8295b7b51b13add75518bb9e2d9db00711a20166 (diff) |
Try to silence GCC warning
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjC.cpp')
-rw-r--r-- | lib/CodeGen/CGObjC.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/CGObjC.cpp b/lib/CodeGen/CGObjC.cpp index 1849dee123..50e8d320dd 100644 --- a/lib/CodeGen/CGObjC.cpp +++ b/lib/CodeGen/CGObjC.cpp @@ -1998,6 +1998,7 @@ namespace { CallReleaseForObject *Object = new (&align) CallReleaseForObject(type, addr, precise); Object->Emit(CGF, IsForEH); + (void)data[0]; } void release(CodeGenFunction &CGF, QualType type, llvm::Value *addr) { @@ -2061,6 +2062,7 @@ namespace { CallWeakReleaseForObject *Object = new (&align) CallWeakReleaseForObject(type, addr); Object->Emit(CGF, IsForEH); + (void)data[0]; } void release(CodeGenFunction &CGF, QualType type, llvm::Value *addr) { |