From: Nick Lewycky Date: Mon, 15 Feb 2010 21:27:20 +0000 (+0000) Subject: A function with no Module owner isn't materializable. This fixes F->dump() for X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=936c43bb239858d7c4ee617e83fd222c1681ab4e;p=oota-llvm.git A function with no Module owner isn't materializable. This fixes F->dump() for functions not embedded within modules. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96272 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Globals.cpp b/lib/VMCore/Globals.cpp index f149c446b43..489ec650e07 100644 --- a/lib/VMCore/Globals.cpp +++ b/lib/VMCore/Globals.cpp @@ -44,10 +44,10 @@ static bool removeDeadUsersOfConstant(const Constant *C) { } bool GlobalValue::isMaterializable() const { - return getParent()->isMaterializable(this); + return getParent() && getParent()->isMaterializable(this); } bool GlobalValue::isDematerializable() const { - return getParent()->isDematerializable(this); + return getParent() && getParent()->isDematerializable(this); } bool GlobalValue::Materialize(std::string *ErrInfo) { return getParent()->Materialize(this, ErrInfo);