mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 22:24:54 +00:00
GlobalDCE: Fix an oversight in my last commit that could lead to crashes.
There is a Constant with non-constant operands: blockaddress. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179460 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -197,8 +197,8 @@ void GlobalDCE::MarkUsedGlobalsAsNeeded(Constant *C) {
|
||||
// use to the list of needed globals.
|
||||
for (User::op_iterator I = C->op_begin(), E = C->op_end(); I != E; ++I) {
|
||||
// If we've already processed this constant there's no need to do it again.
|
||||
Constant *Op = cast<Constant>(*I);
|
||||
if (SeenConstants.insert(Op))
|
||||
Constant *Op = dyn_cast<Constant>(*I);
|
||||
if (Op && SeenConstants.insert(Op))
|
||||
MarkUsedGlobalsAsNeeded(Op);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user