mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-02 08:46:37 +00:00
simplify code, improve a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41205 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1cc2ec8d20
commit
2d691333ac
@ -276,15 +276,15 @@ void Value::uncheckedReplaceAllUsesWith(Value *New) {
|
||||
while (!use_empty()) {
|
||||
Use &U = *UseList;
|
||||
// Must handle Constants specially, we cannot call replaceUsesOfWith on a
|
||||
// constant!
|
||||
// constant because they are uniqued.
|
||||
if (Constant *C = dyn_cast<Constant>(U.getUser())) {
|
||||
if (!isa<GlobalValue>(C))
|
||||
if (!isa<GlobalValue>(C)) {
|
||||
C->replaceUsesOfWithOnConstant(this, New, &U);
|
||||
else
|
||||
U.set(New);
|
||||
} else {
|
||||
U.set(New);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
U.set(New);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user