mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
Don't mask out the dummy defines from temp kills.
This commit is contained in:
parent
6b4efaa3e4
commit
5083679fcc
1 changed files with 2 additions and 2 deletions
|
@ -434,9 +434,9 @@ flow_kill_aliases (set_t *kill, flowvar_t *var, const set_t *uninit)
|
|||
if (var)
|
||||
set_union (tmp, var->define);
|
||||
}
|
||||
// don't allow aliases to kill definitions in the entry dummy block
|
||||
set_difference (tmp, uninit);
|
||||
}
|
||||
// don't allow aliases to kill definitions in the entry dummy block
|
||||
set_difference (tmp, uninit);
|
||||
// merge the alias kills with the current def's kills
|
||||
set_union (kill, tmp);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue