From: Chris Lattner Date: Mon, 12 Jul 2004 01:17:52 +0000 (+0000) Subject: Implement a new method useful for things like the inliner X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=bbd913bb6df533671f52dbbbc405f21ea17dd06f;p=oota-llvm.git Implement a new method useful for things like the inliner git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14768 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/GlobalValue.h b/include/llvm/GlobalValue.h index 942d9b9a408..03fef35e61d 100644 --- a/include/llvm/GlobalValue.h +++ b/include/llvm/GlobalValue.h @@ -66,6 +66,16 @@ public: inline Module *getParent() { return Parent; } inline const Module *getParent() const { return Parent; } + /// removeDeadConstantUsers - If there are any dead constant users dangling + /// off of this global value, remove them. This method is useful for clients + /// that want to check to see if a global is unused, but don't want to deal + /// with potentially dead constants hanging off of the globals. + /// + /// This function returns true if the global value is now dead. If all + /// users of this global are not dead, this method may return false and + /// leave some of them around. + bool removeDeadConstantUsers(); + // Methods for support type inquiry through isa, cast, and dyn_cast: static inline bool classof(const GlobalValue *T) { return true; } static inline bool classof(const Value *V) {