Silence unused variable warning.
authorRichard Trieu <rtrieu@google.com>
Thu, 28 Jun 2012 00:41:11 +0000 (00:41 +0000)
committerRichard Trieu <rtrieu@google.com>
Thu, 28 Jun 2012 00:41:11 +0000 (00:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159316 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/DFAPacketizerEmitter.cpp

index 1a5af84c6e0aec70220313769788f19099788608..d97297f63d19e6f50bd557835e4aad96b92b1e2e 100644 (file)
@@ -290,6 +290,7 @@ void DFA::addTransition(Transition *T) {
   // Add the new transition.
   bool Added = stateTransitions[T->from].insert(T).second;
   assert(Added && "Cannot have multiple states for the same input");
+  (void)Added;
 }