commit | 7ba769bedd02e38eacf0ca6ea06c6084c103432f | [log] [tgz] |
---|---|---|
author | Matt Beaumont-Gay <matthewbg@google.com> | Tue Jun 05 23:00:03 2012 +0000 |
committer | Matt Beaumont-Gay <matthewbg@google.com> | Tue Jun 05 23:00:03 2012 +0000 |
tree | 77c4ccc54b3d62c578869a1db12c5dd6a60b1bf9 | |
parent | 41ec0f9018a49ada722f23c450cc301bbdcfa4d7 [diff] [blame] |
Suppress -Wunused-variable in -Asserts build llvm-svn: 158037
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp index 1431ba4..186def7 100644 --- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -736,6 +736,7 @@ NewIntvs.push_back(Intv); } VNInfo *VNI = Intv->createDeadDef(Begin, getVNInfoAllocator()); + (void)VNI; DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id); } }