Commit 9ee7999f by Jan Hubicka Committed by Jan Hubicka

mips.h (ASM_OUTPUT_ADDR_DIFF_ELT): Do not use qpword on API_N32/not gas

	* mips.h (ASM_OUTPUT_ADDR_DIFF_ELT): Do not use qpword on API_N32/not
	gas
	* mips.md (tablejump insn): Likewise.

From-SVN: r60188
parent 682aea87
Mon Dec 16 23:39:19 CET 2002 Jan Hubicka <jh@suse.cz>
* mips.h (ASM_OUTPUT_ADDR_DIFF_ELT): Do not use qpword on API_N32/not
gas
* mips.md (tablejump insn): Likewise.
2002-12-16 Mark Mitchell <mark@codesourcery.com>
* doc/include/gcc-common.texi: Change version number to 3.4.
......
......@@ -4386,7 +4386,7 @@ do { \
Pmode == DImode ? ".dword" : ".word", \
LOCAL_LABEL_PREFIX, VALUE, LOCAL_LABEL_PREFIX, REL); \
else if (mips_abi == ABI_32 || mips_abi == ABI_O64 \
|| mips_abi == ABI_N32 \
|| (TARGET_GAS && mips_abi == ABI_N32) \
|| (TARGET_GAS && mips_abi == ABI_64)) \
fprintf (STREAM, "\t%s\t%sL%d\n", \
Pmode == DImode ? ".gpdword" : ".gpword", \
......
......@@ -9799,7 +9799,8 @@ move\\t%0,%z4\\n\\
"*
{
/* .cpadd expands to add REG,REG,$gp when pic, and nothing when not pic. */
if (mips_abi == ABI_32 || mips_abi == ABI_O64 || mips_abi == ABI_N32)
if (mips_abi == ABI_32 || mips_abi == ABI_O64
|| (mips_abi == ABI_N32 && TARGET_GAS))
output_asm_insn (\".cpadd\\t%0\", operands);
return \"%*j\\t%0\";
}"
......
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