mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-03-08 04:32:13 +00:00
Do not dereference and write through a null pointer during loop invariant removal.
This commit is contained in:
parent
095060ca70
commit
2fb075ce58
3
DAG.pas
3
DAG.pas
@ -3255,7 +3255,8 @@ var
|
||||
new(dp);
|
||||
dp^.last := nil;
|
||||
dp^.next := dom;
|
||||
dom^.last := dp;
|
||||
if dom <> nil then
|
||||
dom^.last := dp;
|
||||
dom := dp;
|
||||
dp^.dfn := dfn;
|
||||
end; {AddDominator}
|
||||
|
Loading…
x
Reference in New Issue
Block a user