rs6000: Move the hunk affecting VSX/ALTIVEC ahead [PR103627]
authorKewen Lin <linkw@linux.ibm.com>
Mon, 7 Feb 2022 03:30:02 +0000 (21:30 -0600)
committerKewen Lin <linkw@linux.ibm.com>
Mon, 7 Feb 2022 03:30:02 +0000 (21:30 -0600)
commite66ba0f55c000152df63fc67c11a64f79122ef86
tree64156e3e997a5f49c9964ce4b6e986fd6165c86d
parent8103623923ac4ea19b97a369979d4bd5731aab57
rs6000: Move the hunk affecting VSX/ALTIVEC ahead [PR103627]

The modified hunk can update VSX and ALTIVEC flag, we have some codes
to check/warn for some flags related to VSX and ALTIVEC sitting where
the hunk is proprosed to be moved to.  Without this adjustment, the
VSX and ALTIVEC update is too late, it can cause the incompatibility
and result in unexpected behaviors, the associated test case is one
typical case.

Since we already have the code which sets TARGET_FLOAT128_TYPE and lays
after the moved place, and OPTION_MASK_FLOAT128_KEYWORD will rely on
TARGET_FLOAT128_TYPE, so it just simply remove them.

gcc/ChangeLog:

PR target/103627
* config/rs6000/rs6000.cc (rs6000_option_override_internal): Move the
hunk affecting VSX and ALTIVEC to appropriate place.

gcc/testsuite/ChangeLog:

PR target/103627
* gcc.target/powerpc/pr103627-3.c: New test.
gcc/config/rs6000/rs6000.cc
gcc/testsuite/gcc.target/powerpc/pr103627-3.c [new file with mode: 0644]