Implement a new method useful for things like the inliner
authorChris Lattner <sabre@nondot.org>
Mon, 12 Jul 2004 01:17:52 +0000 (01:17 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 12 Jul 2004 01:17:52 +0000 (01:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14768 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/GlobalValue.h

index 942d9b9a4081ded2b6e951a24dfbea4943ba8d43..03fef35e61d34e68f6a9ec50389e11b9794011f0 100644 (file)
@@ -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) {