summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveInterval.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2013-08-14 17:28:52 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2013-08-14 17:28:52 +0000
commit1c6d387dc90fba589f8effb17c72a39f966f87df (patch)
tree3104cad05a9c7b4365471ac762e00d15c04820db /lib/CodeGen/LiveInterval.cpp
parent906968c53336490c021b624c94642b10d9541d2c (diff)
downloadllvm-1c6d387dc90fba589f8effb17c72a39f966f87df.tar.gz
llvm-1c6d387dc90fba589f8effb17c72a39f966f87df.tar.bz2
llvm-1c6d387dc90fba589f8effb17c72a39f966f87df.tar.xz
Remove unnecessary parameter to RenumberValues.
Patch by Matthias Braun! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188393 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveInterval.cpp')
-rw-r--r--lib/CodeGen/LiveInterval.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp
index 6be6bf3688..3f88236a9a 100644
--- a/lib/CodeGen/LiveInterval.cpp
+++ b/lib/CodeGen/LiveInterval.cpp
@@ -202,7 +202,7 @@ void LiveInterval::markValNoForDeletion(VNInfo *ValNo) {
/// RenumberValues - Renumber all values in order of appearance and delete the
/// remaining unused values.
-void LiveInterval::RenumberValues(LiveIntervals &lis) {
+void LiveInterval::RenumberValues() {
SmallPtrSet<VNInfo*, 8> Seen;
valnos.clear();
for (const_iterator I = begin(), E = end(); I != E; ++I) {