summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-upgrade/UpgradeParser.cpp.cvs
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-30 20:08:39 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-30 20:08:39 +0000
commit5301e7c60569c5ab22b113a5828fdb348796a680 (patch)
treefd57924623a8f84c4a8b765d5f090bfbde72efb8 /llvm/tools/llvm-upgrade/UpgradeParser.cpp.cvs
parent3a0bbb0a4d757c665979689cee9a874dfb8e6353 (diff)
downloadbcm5719-llvm-5301e7c60569c5ab22b113a5828fdb348796a680.tar.gz
bcm5719-llvm-5301e7c60569c5ab22b113a5828fdb348796a680.zip
For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoid
confusion with external linkage types. llvm-svn: 33663
Diffstat (limited to 'llvm/tools/llvm-upgrade/UpgradeParser.cpp.cvs')
-rw-r--r--llvm/tools/llvm-upgrade/UpgradeParser.cpp.cvs4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-upgrade/UpgradeParser.cpp.cvs b/llvm/tools/llvm-upgrade/UpgradeParser.cpp.cvs
index 3ac45504cb3..515d2d6bab5 100644
--- a/llvm/tools/llvm-upgrade/UpgradeParser.cpp.cvs
+++ b/llvm/tools/llvm-upgrade/UpgradeParser.cpp.cvs
@@ -5113,11 +5113,11 @@ yyreduce:
(Fn = CurModule.CurrentModule->getFunction(FunctionName, FT))) {
// If this is the case, either we need to be a forward decl, or it needs
// to be.
- if (!CurFun.isDeclare && !Fn->isExternal())
+ if (!CurFun.isDeclare && !Fn->isDeclaration())
error("Redefinition of function '" + FunctionName + "'");
// Make sure to strip off any argument names so we can't get conflicts.
- if (Fn->isExternal())
+ if (Fn->isDeclaration())
for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
AI != AE; ++AI)
AI->setName("");
OpenPOWER on IntegriCloud