1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

Rename 'isMethodExternal' to 'isExternal'

llvm-svn: 194
This commit is contained in:
Chris Lattner 2001-07-15 06:35:24 +00:00
parent ec521ed1f5
commit d5633e6177

View 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...