aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/ScheduleDAGInstrs.h
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-03-09 04:29:02 +0000
committerAndrew Trick <atrick@apple.com>2012-03-09 04:29:02 +0000
commit68675c6c5b173021807e4e12cd250eeba63f6d0d (patch)
tree069ba64098a60fa02e6dfd68199c010c8c37616d /include/llvm/CodeGen/ScheduleDAGInstrs.h
parentd24da97bbf86b87929ef8c57bdf3a009d48bfba7 (diff)
downloadexternal_llvm-68675c6c5b173021807e4e12cd250eeba63f6d0d.zip
external_llvm-68675c6c5b173021807e4e12cd250eeba63f6d0d.tar.gz
external_llvm-68675c6c5b173021807e4e12cd250eeba63f6d0d.tar.bz2
misched interface: rename Begin/End to RegionBegin/RegionEnd since they are not private.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152382 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/ScheduleDAGInstrs.h')
-rw-r--r--include/llvm/CodeGen/ScheduleDAGInstrs.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/ScheduleDAGInstrs.h b/include/llvm/CodeGen/ScheduleDAGInstrs.h
index 4c6b74d..a08f6cc 100644
--- a/include/llvm/CodeGen/ScheduleDAGInstrs.h
+++ b/include/llvm/CodeGen/ScheduleDAGInstrs.h
@@ -188,12 +188,12 @@ namespace llvm {
MachineBasicBlock *BB;
/// The beginning of the range to be scheduled.
- MachineBasicBlock::iterator Begin;
+ MachineBasicBlock::iterator RegionBegin;
/// The end of the range to be scheduled.
- MachineBasicBlock::iterator End;
+ MachineBasicBlock::iterator RegionEnd;
- /// The index in BB of End.
+ /// The index in BB of RegionEnd.
unsigned EndIndex;
/// After calling BuildSchedGraph, each machine instruction in the current
@@ -240,10 +240,10 @@ namespace llvm {
virtual ~ScheduleDAGInstrs() {}
/// begin - Return an iterator to the top of the current scheduling region.
- MachineBasicBlock::iterator begin() const { return Begin; }
+ MachineBasicBlock::iterator begin() const { return RegionBegin; }
/// end - Return an iterator to the bottom of the current scheduling region.
- MachineBasicBlock::iterator end() const { return End; }
+ MachineBasicBlock::iterator end() const { return RegionEnd; }
/// newSUnit - Creates a new SUnit and return a ptr to it.
SUnit *newSUnit(MachineInstr *MI);