From fec656c44cfec5566f94ff54e1429387aea5a6ce Mon Sep 17 00:00:00 2001 From: Alkis Evlogimenos Date: Fri, 27 Aug 2004 04:02:35 +0000 Subject: [PATCH] Add getLastBlock member. This is useful when growing a densemap keyed on MachineBasicBlocks. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16069 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineFunction.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h index ec72f6eb449..69b86a640e8 100644 --- a/include/llvm/CodeGen/MachineFunction.h +++ b/include/llvm/CodeGen/MachineFunction.h @@ -149,6 +149,11 @@ public: return MBBNumbering[N]; } + /// getLastBlock - Returns the MachineBasicBlock with the greatest number + MachineBasicBlock *getLastBlock() { + return MBBNumbering.back(); + } + /// print - Print out the MachineFunction in a format suitable for debugging /// to the specified stream. ///