diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2009-12-13 01:37:04 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2009-12-13 01:37:04 +0000 |
commit | 60cfcecaf48e4310339dcfbdb0e3f0e6d2853855 (patch) | |
tree | f5d9c872ae5774447d7ba0ba2398bc76588f722c /lib/CodeGen/CGException.cpp | |
parent | 821e2eb026f7e2b915d198cc453174dca8277b41 (diff) |
Silence some release build warnings.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91234 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGException.cpp')
-rw-r--r-- | lib/CodeGen/CGException.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CGException.cpp b/lib/CodeGen/CGException.cpp index 0f201b5601..b15b2e9b3b 100644 --- a/lib/CodeGen/CGException.cpp +++ b/lib/CodeGen/CGException.cpp @@ -326,6 +326,7 @@ void CodeGenFunction::EmitStartEHSpec(const Decl *D) { llvm::BasicBlock *Unwind = 0; assert(PrevLandingPad == 0 && "EHSpec has invoke context"); + (void)PrevLandingPad; llvm::BasicBlock *Cont = createBasicBlock("cont"); |