aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gnu.org>1995-04-21 23:39:23 +0000
committerTorbjorn Granlund <tege@gnu.org>1995-04-21 23:39:23 +0000
commit87c7361897db3abd2756356ce485a96430087938 (patch)
tree7410891cdecd916a5f93c539338ef224810589fa /gcc
parent635b02bf02e266a26591c00712d678bf59d78928 (diff)
downloadgcc-87c7361897db3abd2756356ce485a96430087938.zip
gcc-87c7361897db3abd2756356ce485a96430087938.tar.gz
gcc-87c7361897db3abd2756356ce485a96430087938.tar.bz2
(call_internal_reg): Fix typos in length calculation.
(call_value_internal_reg): Likewise. From-SVN: r9432
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/pa/pa.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md
index ff80e61..9a672c3 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)))])