mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-31 10:34:17 +00:00
Do not promote volatile alias sets into registers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10458 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e26092456a
commit
00ad4a2d17
@ -647,7 +647,7 @@ void LICM::findPromotableValuesInLoop(
|
||||
// We can promote this alias set if it has a store, if it is a "Must" alias
|
||||
// set, and if the pointer is loop invariant.
|
||||
if (!AS.isForwardingAliasSet() && AS.isMod() && AS.isMustAlias() &&
|
||||
isLoopInvariant(AS.begin()->first)) {
|
||||
!AS.isVolatile() && isLoopInvariant(AS.begin()->first)) {
|
||||
assert(AS.begin() != AS.end() &&
|
||||
"Must alias set should have at least one pointer element in it!");
|
||||
Value *V = AS.begin()->first;
|
||||
|
Loading…
x
Reference in New Issue
Block a user