diff options
author | Eric Christopher <echristo@redhat.com> | 2003-09-04 19:41:00 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2003-09-04 19:41:00 +0000 |
commit | 33d05111e79f43a85e169f38ac31bb2a5d8a1715 (patch) | |
tree | f02c5f4a69f673a19951bbe7b42f4ccdc970c66f | |
parent | ed75b1d6fc830ca40efb91a1f617d244fbd5b442 (diff) | |
download | gcc-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/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/targhooks.c | 2 |
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 |