Commit 8bfb45f8 by Jakub Jelinek Committed by Jakub Jelinek

i386.c (local_symbolic_operand): Move LABEL_REF test after CONST test.

	* config/i386/i386.c (local_symbolic_operand): Move LABEL_REF test
	after CONST test.

	* gcc.dg/20021023-1.c: New test.

From-SVN: r58469
parent 963f08a9
2002-10-23 Jakub Jelinek <jakub@redhat.com>
* config/i386/i386.c (local_symbolic_operand): Move LABEL_REF test
after CONST test.
2002-10-23 Steve Ellcey <sje@cup.hp.com>
* config/ia64/ia64.c (hfa_element_mode): Don't allow 128 bit floats
......
......@@ -3063,9 +3063,6 @@ local_symbolic_operand (op, mode)
rtx op;
enum machine_mode mode ATTRIBUTE_UNUSED;
{
if (GET_CODE (op) == LABEL_REF)
return 1;
if (GET_CODE (op) == CONST
&& GET_CODE (XEXP (op, 0)) == PLUS
&& GET_CODE (XEXP (XEXP (op, 0), 1)) == CONST_INT
......@@ -3074,6 +3071,9 @@ local_symbolic_operand (op, mode)
&& INTVAL (XEXP (XEXP (op, 0), 1)) < 16*1024*1024)))
op = XEXP (XEXP (op, 0), 0);
if (GET_CODE (op) == LABEL_REF)
return 1;
if (GET_CODE (op) != SYMBOL_REF)
return 0;
......
2002-10-23 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/20021023-1.c: New test.
2002-10-23 Mark Mitchell <mark@codesourcery.com>
PR c++/7679
......
/* This testcase ICEd on x86-64 because LABEL_REF + small const was not
considered as local_symbolic_operand. */
/* { dg-do compile } */
/* { dg-options "-O2 -fpic" } */
typedef __builtin_va_list va_list;
static unsigned int
foo (void *a, float b, const char *c, va_list d, void *e)
{
return -1;
}
unsigned int
bar (void *a, float b, const char *c, ...)
{
va_list args;
unsigned int d;
__builtin_stdarg_start (args, c);
d = foo (a, b, c, args, a);
__builtin_va_end (args);
return d;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment