commit | d7df6cf8d0ad965499a993836704afdfae6f2e52 | [log] [tgz] |
---|---|---|
author | Richard Trieu <rtrieu@google.com> | Thu Jun 28 00:41:11 2012 +0000 |
committer | Richard Trieu <rtrieu@google.com> | Thu Jun 28 00:41:11 2012 +0000 |
tree | 2a2341a41d73cbc5c2953d6fd27eba8e83d62176 | |
parent | 0064851c0b35f05eb7cde367359ce78ded020c7f [diff] [blame] |
Silence unused variable warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159316 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/DFAPacketizerEmitter.cpp b/utils/TableGen/DFAPacketizerEmitter.cpp index 1a5af84..d97297f 100644 --- a/utils/TableGen/DFAPacketizerEmitter.cpp +++ b/utils/TableGen/DFAPacketizerEmitter.cpp
@@ -290,6 +290,7 @@ // Add the new transition. bool Added = stateTransitions[T->from].insert(T).second; assert(Added && "Cannot have multiple states for the same input"); + (void)Added; }