diff options
author | Stuart Hastings <stuart@gcc.gnu.org> | 2003-12-05 16:17:26 +0000 |
---|---|---|
committer | Stuart Hastings <stuart@gcc.gnu.org> | 2003-12-05 16:17:26 +0000 |
commit | c989f2f732df7b89e94d3d338cabc4fb61ae0267 (patch) | |
tree | 57f49b6f31ed0b597082a9070b8947d21f35913e | |
parent | 5d27ef94846befb5099acc0cbbe555b586e415ff (diff) | |
download | gcc-c989f2f732df7b89e94d3d338cabc4fb61ae0267.tar.gz |
* config/rs6000/rs6000.md: Correct macro test of TARGET_MACHO.
From-SVN: r74338
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 14a42c9ce59..19b263a6e99 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -10586,7 +10586,7 @@ else if (INTVAL (operands[2]) & CALL_V4_CLEAR_FP_ARGS) output_asm_insn ("creqv 6,6,6", operands); -#ifdef TARGET_MACHO +#if TARGET_MACHO return output_call(insn, operands, 0, 2); #else return (DEFAULT_ABI == ABI_V4 && flag_pic) ? "bl %z0@plt" : "bl %z0"; @@ -10631,7 +10631,7 @@ else if (INTVAL (operands[3]) & CALL_V4_CLEAR_FP_ARGS) output_asm_insn ("creqv 6,6,6", operands); -#ifdef TARGET_MACHO +#if TARGET_MACHO return output_call(insn, operands, 1, 3); #else return (DEFAULT_ABI == ABI_V4 && flag_pic) ? "bl %z1@plt" : "bl %z1"; |