aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/targhooks.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3875c60..5eb0b96 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,10 @@
2003-09-04 Eric Christopher <echristo@redhat.com>
+ * targhooks.c (default_return_in_memory): Fix typo
+ in last checkin.
+
+2003-09-04 Eric Christopher <echristo@redhat.com>
+
* targhooks.c (default_return_in_memory): Fix default
definition.
diff --git a/gcc/targhooks.c b/gcc/targhooks.c
index c7ceaf3..fe0bc0f5 100644
--- a/gcc/targhooks.c
+++ b/gcc/targhooks.c
@@ -107,7 +107,7 @@ bool
default_return_in_memory (tree type,
tree fntype ATTRIBUTE_UNUSED)
{
- return (TYPE_MODE (TYPE) == BLKmode);
+ return (TYPE_MODE (type) == BLKmode);
}
rtx