util/romcc: remove self-assignment
Change-Id: I0f78b55b28011cdefc90665bca2a7ea17647e955 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Found-by: Coverity Scan #1129127 Reviewed-on: https://review.coreboot.org/17885 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
f78e658dac
commit
da8421d1e2
|
@ -20919,7 +20919,6 @@ static void scc_visit_phi(struct compile_state *state, struct scc_state *scc,
|
|||
}
|
||||
/* meet(X, lattice high) = X */
|
||||
else if (is_lattice_hi(state, tmp)) {
|
||||
lnode->val = lnode->val;
|
||||
}
|
||||
/* meet(lattice high, X) = X */
|
||||
else if (is_lattice_hi(state, lnode)) {
|
||||
|
|
Loading…
Reference in New Issue