From 894707117e718b38cdd5fbbf7b2d2ccfcbafe98b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 20 Sep 2003 14:36:49 +0000 Subject: [PATCH] Rename getEntryNode -> getEntryBlock() git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8624 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Function.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 5c466e17b36..29046ad7822 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -122,8 +122,8 @@ public: const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; } BasicBlockListType &getBasicBlockList() { return BasicBlocks; } - const BasicBlock &getEntryNode() const { return front(); } - BasicBlock &getEntryNode() { return front(); } + const BasicBlock &getEntryBlock() const { return front(); } + BasicBlock &getEntryBlock() { return front(); } //===--------------------------------------------------------------------===// // Symbol Table Accessing functions... -- 2.11.0