summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/ScheduleDAG.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-05-13 05:53:47 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-05-13 05:53:47 +0000
commitee00a1d12c631eb7360ddd4809bdde72331b2736 (patch)
treecbb51b8efb9f495be2c518ad14d2b845055d3f19 /include/llvm/CodeGen/ScheduleDAG.h
parentdd73e7fa0950fa0244ab97984347cb442d553ff0 (diff)
downloadllvm-ee00a1d12c631eb7360ddd4809bdde72331b2736.tar.gz
llvm-ee00a1d12c631eb7360ddd4809bdde72331b2736.tar.bz2
llvm-ee00a1d12c631eb7360ddd4809bdde72331b2736.tar.xz
Revert an un-intended change
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28278 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/ScheduleDAG.h')
-rw-r--r--include/llvm/CodeGen/ScheduleDAG.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/llvm/CodeGen/ScheduleDAG.h b/include/llvm/CodeGen/ScheduleDAG.h
index 6263dfb57f..128a74b735 100644
--- a/include/llvm/CodeGen/ScheduleDAG.h
+++ b/include/llvm/CodeGen/ScheduleDAG.h
@@ -143,18 +143,6 @@ namespace llvm {
class ScheduleDAG {
public:
-
- // Scheduling heuristics
- enum SchedHeuristics {
- defaultScheduling, // Let the target specify its preference.
- noScheduling, // No scheduling, emit breadth first sequence.
- simpleScheduling, // Two pass, min. critical path, max. utilization.
- simpleNoItinScheduling, // Same as above exact using generic latency.
- listSchedulingBURR, // Bottom-up reg reduction list scheduling.
- listSchedulingTDRR, // Top-down reg reduction list scheduling.
- listSchedulingTD // Top-down list scheduler.
- };
-
SelectionDAG &DAG; // DAG of the current basic block
MachineBasicBlock *BB; // Current basic block
const TargetMachine &TM; // Target processor