summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveInterval.cpp
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2013-09-06 16:44:29 +0000
committerMatthias Braun <matze@braunis.de>2013-09-06 16:44:29 +0000
commit1920156982643a1c5c28af6f4684580b516eb597 (patch)
tree9960ff60fe2f3f82c40d6a727df04bae786178fb /lib/CodeGen/LiveInterval.cpp
parent2d5558cbaecfcaea72b80a725417dde6ed80ee04 (diff)
downloadllvm-1920156982643a1c5c28af6f4684580b516eb597.tar.gz
llvm-1920156982643a1c5c28af6f4684580b516eb597.tar.bz2
llvm-1920156982643a1c5c28af6f4684580b516eb597.tar.xz
remove unused argument from LiveRanges::join()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190169 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveInterval.cpp')
-rw-r--r--lib/CodeGen/LiveInterval.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp
index 3f88236a9a..e067addc69 100644
--- a/lib/CodeGen/LiveInterval.cpp
+++ b/lib/CodeGen/LiveInterval.cpp
@@ -415,8 +415,7 @@ void LiveInterval::removeValNo(VNInfo *ValNo) {
void LiveInterval::join(LiveInterval &Other,
const int *LHSValNoAssignments,
const int *RHSValNoAssignments,
- SmallVectorImpl<VNInfo *> &NewVNInfo,
- MachineRegisterInfo *MRI) {
+ SmallVectorImpl<VNInfo *> &NewVNInfo) {
verify();
// Determine if any of our live range values are mapped. This is uncommon, so