diff options
author | Matt Beaumont-Gay <matthewbg@google.com> | 2012-06-05 23:00:03 +0000 |
---|---|---|
committer | Matt Beaumont-Gay <matthewbg@google.com> | 2012-06-05 23:00:03 +0000 |
commit | 7ba769bedd02e38eacf0ca6ea06c6084c103432f (patch) | |
tree | 77c4ccc54b3d62c578869a1db12c5dd6a60b1bf9 /llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | |
parent | 41ec0f9018a49ada722f23c450cc301bbdcfa4d7 (diff) | |
download | bcm5719-llvm-7ba769bedd02e38eacf0ca6ea06c6084c103432f.tar.gz bcm5719-llvm-7ba769bedd02e38eacf0ca6ea06c6084c103432f.zip |
Suppress -Wunused-variable in -Asserts build
llvm-svn: 158037
Diffstat (limited to 'llvm/lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp index 1431ba4cd2a..186def79e26 100644 --- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -736,6 +736,7 @@ void LiveIntervals::computeLiveInRegUnits() { NewIntvs.push_back(Intv); } VNInfo *VNI = Intv->createDeadDef(Begin, getVNInfoAllocator()); + (void)VNI; DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << '#' << VNI->id); } } |