summaryrefslogtreecommitdiff
path: root/include/llvm/Function.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-07-15 06:35:24 +0000
committerChris Lattner <sabre@nondot.org>2001-07-15 06:35:24 +0000
commit52f2750ddb466f44f7cea48a86a1cf4e52f2f8e2 (patch)
tree43b9a1112e1d9967c5a10bac759b76ebbc2e5279 /include/llvm/Function.h
parentf5a0892324fbc28e54d80f269956042f9ecc621f (diff)
downloadllvm-52f2750ddb466f44f7cea48a86a1cf4e52f2f8e2.tar.gz
llvm-52f2750ddb466f44f7cea48a86a1cf4e52f2f8e2.tar.bz2
llvm-52f2750ddb466f44f7cea48a86a1cf4e52f2f8e2.tar.xz
Rename 'isMethodExternal' to 'isExternal'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Function.h')
-rw-r--r--include/llvm/Function.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h
index 349dd61a84..59849c637a 100644
--- a/include/llvm/Function.h
+++ b/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...