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 | 3e0a363021a96fc14742a803caa2d9f7855b28d4 (patch) | |
tree | 2fbf66dc5a0fe35aac5e75a76886fd52b9b9b886 /clang/lib/CodeGen/CGDebugInfo.cpp | |
parent | 6ad1d7809d1ea4b9c21af8dc6349f5a6a5df217e (diff) | |
download | bcm5719-llvm-3e0a363021a96fc14742a803caa2d9f7855b28d4.tar.gz bcm5719-llvm-3e0a363021a96fc14742a803caa2d9f7855b28d4.zip |
CGDebugInfo.cpp: Fix a warning. [-Wunused-variable]
llvm-svn: 173022
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index 719bb69de42..ec88d8727ce 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/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); } |