Commit b8888a0f by Segher Boessenkool Committed by Segher Boessenkool

rs6000: Fix an error message in sysv4.h

While looking at PR82411, I got the error message

	error: '-msdata=-mcall' and 'eabi-linux' are incompatible

which caused some head-scratching.


	* config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Correct error
	message for incompatible -msdata=* and -mcall-* options.

From-SVN: r253467
parent b9760b03
2017-10-05 Segher Boessenkool <segher@kernel.crashing.org>
* config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Correct error
message for incompatible -msdata=* and -mcall-* options.
2017-10-05 Jan Hubicka <hubicka@ucw.cz>
* i386.c (ia32_multipass_dfa_lookahead): Default to issue rate
......@@ -160,7 +160,7 @@ do { \
{ \
rs6000_sdata = SDATA_NONE; \
error ("%<%s=%s%> and %<%s-%s%> are incompatible", \
"-msdata", "-mcall", rs6000_sdata_name, rs6000_abi_name); \
"-msdata", rs6000_sdata_name, "-mcall", rs6000_abi_name); \
} \
\
targetm.have_srodata_section = rs6000_sdata == SDATA_EABI; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment