From 87c7361897db3abd2756356ce485a96430087938 Mon Sep 17 00:00:00 2001 From: Torbjorn Granlund Date: Fri, 21 Apr 1995 23:39:23 +0000 Subject: [PATCH] (call_internal_reg): Fix typos in length calculation. (call_value_internal_reg): Likewise. From-SVN: r9432 --- gcc/config/pa/pa.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index ff80e618ce0..9a672c3b908 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -3589,9 +3589,9 @@ }" [(set_attr "type" "dyncall") (set (attr "length") - (if_then_else (and (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") + (if_then_else (and (eq (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0)) - (ne (symbol_ref "TARGET_MILLICODE_LONG_CALLS") + (eq (symbol_ref "TARGET_MILLICODE_LONG_CALLS") (const_int 0))) (const_int 12) (const_int 24)))]) @@ -3697,9 +3697,9 @@ }" [(set_attr "type" "dyncall") (set (attr "length") - (if_then_else (and (ne (symbol_ref "TARGET_PORTABLE_RUNTIME") + (if_then_else (and (eq (symbol_ref "TARGET_PORTABLE_RUNTIME") (const_int 0)) - (ne (symbol_ref "TARGET_MILLICODE_LONG_CALLS") + (eq (symbol_ref "TARGET_MILLICODE_LONG_CALLS") (const_int 0))) (const_int 12) (const_int 24)))]) -- 2.30.2