aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/VMCore/Globals.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/VMCore/Globals.cpp b/lib/VMCore/Globals.cpp
index 0e0d667392..76fc5a9492 100644
--- a/lib/VMCore/Globals.cpp
+++ b/lib/VMCore/Globals.cpp
@@ -63,12 +63,14 @@ void GlobalValue::setAlignment(unsigned Align) {
}
bool GlobalValue::isDeclaration() const {
+ // Globals are definitions if they have an initializer.
if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(this))
return GV->getNumOperands() == 0;
+ // Functions are definitions if they have a body.
if (const Function *F = dyn_cast<Function>(this))
return F->empty();
-
+
const GlobalAlias *GA = cast<GlobalAlias>(this);
if (const GlobalValue *AV = GA->getAliasedGlobal())
return AV->isDeclaration();