From eaed2794d892beb0f2f6113a90f8baec178989d6 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 15 Jul 2001 06:35:24 +0000 Subject: [PATCH] Rename 'isMethodExternal' to 'isExternal' llvm-svn: 194 --- llvm/include/llvm/Function.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/Function.h b/llvm/include/llvm/Function.h index 349dd61a8469..59849c637a59 100644 --- a/llvm/include/llvm/Function.h +++ b/llvm/include/llvm/Function.h @@ -54,8 +54,8 @@ public: const MethodType *getMethodType() const; // Is the body of this method unknown? (the basic block list is empty if so) - // this is true for "extern"al methods. - bool isMethodExternal() const { return BasicBlocks.empty(); } + // this is true for external methods, defined as forward "declare"ations + bool isExternal() const { return BasicBlocks.empty(); } // Get the class structure that this method is contained inside of...