mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
rtl: Validate subreg info when optimizing vec_select.
When optimizing for NOPs in case of overlapping regs in VEC_SELECT expressions, validate subreg data before using simplify_subreg_regno. There is no real SUBREG rtx here, but a pseudo subreg call to check if subregs are possible. gcc/ChangeLog: * rtlanal.cc (set_noop_p): Validate subreg constraints before checking for overlapping regs using simplify_subreg_regno.
This commit is contained in:
parent
9a62c14958
commit
a552a808f0
@ -1686,6 +1686,7 @@ set_noop_p (const_rtx set)
|
||||
}
|
||||
return
|
||||
REG_CAN_CHANGE_MODE_P (REGNO (dst), GET_MODE (src0), GET_MODE (dst))
|
||||
&& validate_subreg (GET_MODE (dst), GET_MODE (src0), src0, offset)
|
||||
&& simplify_subreg_regno (REGNO (src0), GET_MODE (src0),
|
||||
offset, GET_MODE (dst)) == (int) REGNO (dst);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user