mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
Change method to return void. Inline dtor
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14982 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e30ab88209
commit
f962ac798a
@ -42,7 +42,9 @@ protected:
|
||||
LinkageTypes Linkage; // The linkage of this global
|
||||
Module *Parent;
|
||||
public:
|
||||
virtual ~GlobalValue();
|
||||
~GlobalValue() {
|
||||
removeDeadConstantUsers(); // remove any dead constants using this.
|
||||
}
|
||||
|
||||
/// If the usage is empty (except transitively dead constants), then this
|
||||
/// global value can can be safely deleted since the destructor will
|
||||
@ -85,10 +87,10 @@ public:
|
||||
/// 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();
|
||||
/// This method tries to make the global dead. If it detects a user that
|
||||
/// would prevent it from becoming completely dead, it gives up early,
|
||||
/// potentially leaving some dead constant users around.
|
||||
void removeDeadConstantUsers();
|
||||
|
||||
// Methods for support type inquiry through isa, cast, and dyn_cast:
|
||||
static inline bool classof(const GlobalValue *T) { return true; }
|
||||
|
Loading…
Reference in New Issue
Block a user