* h8300.c (dosize): Fix test for "sub".

From-SVN: r45288
This commit is contained in:
J"orn Rennecke 2001-08-30 15:13:27 +00:00 committed by Joern Rennecke
parent 598e9ba5bd
commit 63a57e0fb0
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Aug 30 16:00:31 2001 J"orn Rennecke <amylaar@redhat.com>
* h8300.c (dosize): Fix test for "sub".
Thu Aug 30 10:21:43 2001 J"orn Rennecke <amylaar@redhat.com>
* c-typeck.c (pointer_diff): Try to eliminate common term before

View File

@ -185,7 +185,7 @@ dosize (file, op, size)
if ((TARGET_H8300 && size <= 4)
|| ((TARGET_H8300H || TARGET_H8300S) && size <= 8)
|| (TARGET_H8300 && current_function_needs_context
&& strcmp (op, "sub")))
&& ! strcmp (op, "sub")))
{
unsigned HOST_WIDE_INT amount;