diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-08-18 00:22:49 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-08-18 00:22:49 -0600 |
commit | 9ec9ad579896de301d5a2d1fa0949cf5a83d4cef (patch) | |
tree | 30640115746eca1588206221f618601c8f9b1f09 /gcc | |
parent | 228e0c5f6cf53320d73d5acb966db5fb15b4863f (diff) | |
download | gcc-9ec9ad579896de301d5a2d1fa0949cf5a83d4cef.zip gcc-9ec9ad579896de301d5a2d1fa0949cf5a83d4cef.tar.gz gcc-9ec9ad579896de301d5a2d1fa0949cf5a83d4cef.tar.bz2 |
pa.md (call_internal_symref): Make pattern unavailable if TARGET_LONG_CALLS.
* pa.md (call_internal_symref): Make pattern unavailable if
TARGET_LONG_CALLS.
(call_value_internal_symref): Likewise.
From-SVN: r5170
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 80d2af58..4b085f2 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -2792,7 +2792,7 @@ (match_operand 1 "" "i")) (clobber (reg:SI 2)) (use (const_int 0))] - "" + "! TARGET_LONG_CALLS" "* { output_arg_descriptor (insn); @@ -2855,7 +2855,7 @@ (clobber (reg:SI 2)) (use (const_int 0))] ;;- Don't use operand 1 for most machines. - "" + "! TARGET_LONG_CALLS" "* { output_arg_descriptor (insn); |