diff options
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/CodeGen/FastISel.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/llvm/include/llvm/CodeGen/FastISel.h b/llvm/include/llvm/CodeGen/FastISel.h index 7cb96952aa6..7f240f563ad 100644 --- a/llvm/include/llvm/CodeGen/FastISel.h +++ b/llvm/include/llvm/CodeGen/FastISel.h @@ -131,17 +131,12 @@ public: /// into the current block. void recomputeInsertPt(); - struct SavePoint { - MachineBasicBlock::iterator InsertPt; - DebugLoc DL; - }; - /// enterLocalValueArea - Prepare InsertPt to begin inserting instructions /// into the local value area and return the old insert position. - SavePoint enterLocalValueArea(); + MachineBasicBlock::iterator enterLocalValueArea(); /// leaveLocalValueArea - Reset InsertPt to the given old insert position. - void leaveLocalValueArea(SavePoint Old); + void leaveLocalValueArea(MachineBasicBlock::iterator Old); virtual ~FastISel(); |

