diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2013-08-14 17:28:52 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2013-08-14 17:28:52 +0000 |
commit | 1c6d387dc90fba589f8effb17c72a39f966f87df (patch) | |
tree | 3104cad05a9c7b4365471ac762e00d15c04820db /include | |
parent | 906968c53336490c021b624c94642b10d9541d2c (diff) | |
download | external_llvm-1c6d387dc90fba589f8effb17c72a39f966f87df.zip external_llvm-1c6d387dc90fba589f8effb17c72a39f966f87df.tar.gz external_llvm-1c6d387dc90fba589f8effb17c72a39f966f87df.tar.bz2 |
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 'include')
-rw-r--r-- | include/llvm/CodeGen/LiveInterval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/LiveInterval.h b/include/llvm/CodeGen/LiveInterval.h index f42bf8c..6361c35 100644 --- a/include/llvm/CodeGen/LiveInterval.h +++ b/include/llvm/CodeGen/LiveInterval.h @@ -240,7 +240,7 @@ namespace llvm { /// RenumberValues - Renumber all values in order of appearance and remove /// unused values. - void RenumberValues(LiveIntervals &lis); + void RenumberValues(); /// MergeValueNumberInto - This method is called when two value nubmers /// are found to be equivalent. This eliminates V1, replacing all |