mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 15:17:25 +00:00
LiveRangeCalc: Rename some parameters from kill to use, NFC.
Those parameters did not necessarily describe kill points but just uses. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229601 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -454,10 +454,10 @@ namespace llvm {
|
||||
/// may have grown since it was inserted).
|
||||
iterator addSegment(Segment S);
|
||||
|
||||
/// extendInBlock - If this range is live before Kill in the basic block
|
||||
/// that starts at StartIdx, extend it to be live up to Kill, and return
|
||||
/// the value. If there is no segment before Kill, return NULL.
|
||||
VNInfo *extendInBlock(SlotIndex StartIdx, SlotIndex Kill);
|
||||
/// If this range is live before @p Use in the basic block that starts at
|
||||
/// @p StartIdx, extend it to be live up to @p Use, and return the value. If
|
||||
/// there is no segment before @p Use, return nullptr.
|
||||
VNInfo *extendInBlock(SlotIndex StartIdx, SlotIndex Use);
|
||||
|
||||
/// join - Join two live ranges (this, and other) together. This applies
|
||||
/// mappings to the value numbers in the LHS/RHS ranges as specified. If
|
||||
|
||||
Reference in New Issue
Block a user