diff options
author | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-04 19:41:00 +0000 |
---|---|---|
committer | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-04 19:41:00 +0000 |
commit | e409e1ba57bd3a374f56a10cd021b402b671e111 (patch) | |
tree | f02c5f4a69f673a19951bbe7b42f4ccdc970c66f | |
parent | 8d1b765301cc5a77f59ffa73eee6ad0c2bc489e0 (diff) | |
download | gcc-e409e1ba57bd3a374f56a10cd021b402b671e111.tar.gz |
2003-09-04 Eric Christopher <echristo@redhat.com>
* targhooks.c (default_return_in_memory): Fix typo
in last checkin.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71083 138bc75d-0d04-0410-961f-82ee72b054a4
-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 3875c607365..5eb0b96e4f9 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 c7ceaf38a2f..fe0bc0f5e4e 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 |