diff options
| author | Dan Gohman <gohman@apple.com> | 2008-07-21 20:00:07 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-07-21 20:00:07 +0000 |
| commit | 462dc7f4960e5074ddf4769ec8b2ef1ba7a4d2c8 (patch) | |
| tree | 47d4f104a9cb4c01e109dc5f3468a538ea73de12 /lib/Target | |
| parent | 2d3ff5a7aee24024765629d17ebff351ea11c9bb (diff) | |
Add titles to the various SelectionDAG viewGraph calls
that include useful information like the name of the
block being viewed and the current phase of compilation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53872 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
| -rw-r--r-- | lib/Target/X86/X86ISelDAGToDAG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/X86ISelDAGToDAG.cpp b/lib/Target/X86/X86ISelDAGToDAG.cpp index 74100f8362..399cd331da 100644 --- a/lib/Target/X86/X86ISelDAGToDAG.cpp +++ b/lib/Target/X86/X86ISelDAGToDAG.cpp @@ -133,7 +133,7 @@ namespace { /// InstructionSelectPostProcessing - Post processing of selected and /// scheduled basic blocks. - virtual void InstructionSelectPostProcessing(SelectionDAG &DAG); + virtual void InstructionSelectPostProcessing(); virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF); @@ -580,7 +580,7 @@ void X86DAGToDAGISel::InstructionSelect(SelectionDAG &DAG) { DAG.RemoveDeadNodes(); } -void X86DAGToDAGISel::InstructionSelectPostProcessing(SelectionDAG &DAG) { +void X86DAGToDAGISel::InstructionSelectPostProcessing() { // If we are emitting FP stack code, scan the basic block to determine if this // block defines any FP values. If so, put an FP_REG_KILL instruction before // the terminator of the block. |
