diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-01-21 10:51:28 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-01-21 10:51:28 +0000 |
commit | d24c9ab90b42370bb417f44e001a0347ee1ca87e (patch) | |
tree | f58265a9185cbfdb90396ec47de6f30630e02006 /lib/CodeGen | |
parent | 7f5b025e9b9a981a257d83063064ac6e58239d76 (diff) |
CGDebugInfo.cpp: Fix a warning. [-Wunused-variable]
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173022 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index 719bb69de4..ec88d8727c 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -1738,6 +1738,7 @@ static QualType UnwrapTypeForDebugInfo(QualType T, const ASTContext &C) { } assert(T != LastT && "Type unwrapping failed to unwrap!"); + (void)LastT; } while (true); } |