mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Malloc/Free have mod/ref effects. Do not allow CSE of function calls that
call malloc/free. This fixes PR555. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21443 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
53f72b3bab
commit
3fe4d3cb5b
@ -310,6 +310,8 @@ void GlobalsModRef::AnalyzeSCC(std::vector<CallGraphNode *> &SCC) {
|
||||
FunctionEffect |= Ref;
|
||||
else if (isa<StoreInst>(*II))
|
||||
FunctionEffect |= Mod;
|
||||
else if (isa<MallocInst>(*II) || isa<FreeInst>(*II))
|
||||
FunctionEffect |= ModRef;
|
||||
}
|
||||
|
||||
if ((FunctionEffect & Mod) == 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user