IBM Z: Fix bootstrap breakage due to HAVE_TF macro
commit778087e0f54285de1eec5c3bf3657392779b52bf
authorIlya Leoshkevich <iii@linux.ibm.com>
Tue, 10 Nov 2020 17:26:04 +0000 (10 18:26 +0100)
committerIlya Leoshkevich <iii@linux.ibm.com>
Wed, 11 Nov 2020 00:00:32 +0000 (11 01:00 +0100)
tree3c7eac37cda1990f80b0bf7bea0185446b69d5a8
parent5dfbc52264fc64db22e75f385be9efae3d0eba46
IBM Z: Fix bootstrap breakage due to HAVE_TF macro

Commit e627cda56865 ("IBM Z: Store long doubles in vector registers
when possible") introduced HAVE_TF macro which expands to a logical
"or" of HAVE_ constants.  Not all of these constants are available in
GENERATOR_FILE context, so a hack was used: simply expand to true in
this case, because the actual value matters only during compiler
runtime and not during generation.

However, one aspect of this value matters during generation after all:
whether or not it's a constant, which in this case it appears to be.
This results in incorrect values in insn-flags.h and broken bootstrap
for some configurations.

Fix by using a dummy value that is not a constant.

gcc/ChangeLog:

2020-11-10  Ilya Leoshkevich  <iii@linux.ibm.com>

* config/s390/s390.h (HAVE_TF): Use opaque value when
GENERATOR_FILE is defined.
gcc/config/s390/s390.h