aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@redhat.com>2003-09-04 19:41:00 +0000
committerEric Christopher <echristo@gcc.gnu.org>2003-09-04 19:41:00 +0000
commit33d05111e79f43a85e169f38ac31bb2a5d8a1715 (patch)
treef02c5f4a69f673a19951bbe7b42f4ccdc970c66f
parented75b1d6fc830ca40efb91a1f617d244fbd5b442 (diff)
downloadgcc-33d05111e79f43a85e169f38ac31bb2a5d8a1715.zip
gcc-33d05111e79f43a85e169f38ac31bb2a5d8a1715.tar.gz
gcc-33d05111e79f43a85e169f38ac31bb2a5d8a1715.tar.bz2
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 typo in last checkin. From-SVN: r71083
-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