aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-01-21 10:51:28 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-01-21 10:51:28 +0000
commitd24c9ab90b42370bb417f44e001a0347ee1ca87e (patch)
treef58265a9185cbfdb90396ec47de6f30630e02006 /lib/CodeGen
parent7f5b025e9b9a981a257d83063064ac6e58239d76 (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.cpp1
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);
}