diff options
author | Matthias Braun <matze@braunis.de> | 2013-09-06 16:44:29 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2013-09-06 16:44:29 +0000 |
commit | 1920156982643a1c5c28af6f4684580b516eb597 (patch) | |
tree | 9960ff60fe2f3f82c40d6a727df04bae786178fb /include | |
parent | 2d5558cbaecfcaea72b80a725417dde6ed80ee04 (diff) | |
download | external_llvm-1920156982643a1c5c28af6f4684580b516eb597.zip external_llvm-1920156982643a1c5c28af6f4684580b516eb597.tar.gz external_llvm-1920156982643a1c5c28af6f4684580b516eb597.tar.bz2 |
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 'include')
-rw-r--r-- | include/llvm/CodeGen/LiveInterval.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/LiveInterval.h b/include/llvm/CodeGen/LiveInterval.h index 345f0dd..24aad4f 100644 --- a/include/llvm/CodeGen/LiveInterval.h +++ b/include/llvm/CodeGen/LiveInterval.h @@ -370,8 +370,7 @@ namespace llvm { void join(LiveInterval &Other, const int *ValNoAssignments, const int *RHSValNoAssignments, - SmallVectorImpl<VNInfo *> &NewVNInfo, - MachineRegisterInfo *MRI); + SmallVectorImpl<VNInfo *> &NewVNInfo); /// True iff this live range is a single segment that lies between the /// specified boundaries, exclusively. Vregs live across a backedge are not |