From: Yaron Keren Date: Sat, 28 Feb 2015 15:54:04 +0000 (+0000) Subject: Silence variable set but not used warning in CodeGenRegisters.cpp, NFC. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fa22cce8d765eaa52434f67ef43c842ff648e153;p=oota-llvm.git Silence variable set but not used warning in CodeGenRegisters.cpp, NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230854 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/CodeGenRegisters.cpp b/utils/TableGen/CodeGenRegisters.cpp index 3284ba46a44..f89ba9ea5b2 100644 --- a/utils/TableGen/CodeGenRegisters.cpp +++ b/utils/TableGen/CodeGenRegisters.cpp @@ -1783,6 +1783,7 @@ void CodeGenRegBank::computeRegUnitLaneMasks() { } ++u; } + (void)Found; assert(Found); } }