* h8300.c (dosize): Fix test for "sub".
From-SVN: r45288
This commit is contained in:
parent
598e9ba5bd
commit
63a57e0fb0
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user