Rename 'isMethodExternal' to 'isExternal'
authorChris Lattner <sabre@nondot.org>
Sun, 15 Jul 2001 06:35:24 +0000 (06:35 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 15 Jul 2001 06:35:24 +0000 (06:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Function.h

index 349dd61a84692303c4e05f445aed6ba52477babd..59849c637a59a8949931480d1cde44dc7ba13031 100644 (file)
@@ -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...