From d24c9ab90b42370bb417f44e001a0347ee1ca87e Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Mon, 21 Jan 2013 10:51:28 +0000 Subject: [PATCH] CGDebugInfo.cpp: Fix a warning. [-Wunused-variable] git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173022 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CGDebugInfo.cpp | 1 + 1 file changed, 1 insertion(+) 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); } -- 2.40.0