diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-12 01:17:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-12 01:17:52 +0000 |
commit | bbd913bb6df533671f52dbbbc405f21ea17dd06f (patch) | |
tree | dd357dfe5222ca9dabb764b4ee294caf28e1c87d | |
parent | 1c2fe3148333d023a37fdbe54192631258a85f76 (diff) |
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
-rw-r--r-- | include/llvm/GlobalValue.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/llvm/GlobalValue.h b/include/llvm/GlobalValue.h index 942d9b9a40..03fef35e61 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) { |