|
gcc-3.2.3 bugs after merge
by Unknown on Jan 26, 2004 |
Not available! | ||
|
Hi all!
After commiting Scott's linker bugfix i've tried various compiler/binutils
combinations. The linker fix works great with any compiler. I'd like
to thank especialy Scott and also others for all the effort.
Trying the following compilers with linux and binutils
with Scott's fix gives:
| long long bug | linux 2.4.20 |
----------------+---------------+-------------------------------+-
OC gcc-3.1 | present | compiles, runs OK |
OC gcc-3.2.3 | present | compiles, runs OK |
OC+UC gcc-3.2.3 | ? | doesn't compile |
UC gcc-3.4 | not present | compiles, didn't run it yet |
----------------------------------------------------------------+
| ecos 2.0 + Scott's updates |
----------------+---------------+-------------------------------+
OC gcc-3.1 | crash when compiling, twothreads problem |
OC gcc-3.2.3 | compiles OK, twothreads problem (?) |
OC+UC gcc-3.2.3 | compiles OK, twothreads problem |
UC gcc-3.4 | ? |
----------------------------------------------------------------+
OC gcc-3.2.3 is gcc-3.2.3 in opencores cvs dating before Heiko's merge
(i took version from 25. 5. 2003, but i don't think there
were other changes then Heiko's merge and elf/rtems target separation_
OC+UC gcc-3.2.3 is latest revision from opencores cvs with
UC's stuff merged. it dies while compiling, details bellow.
about ecos i'm not sure why i get the twothreads problem and Scott
doesn't. more about it in:
http://www.opencores.org/forums/openrisc/2004/01/000138
it would be great to hear if anybody has any idea where the problem is...
since it takes a lot of time to build whole toolchain, linux and
ecos i didn't yet try everything, but i intend to post more about all this
when i have some more time.
----
OC+UC gcc-3.2.3 crash while building linux:
The linux version is not exacly the same as in opencores cvs (i've
made quite some enhancments but serail.c stayed unchanges for some time
now) If someone would like to look into this i can provide the
script (with all the packages sources it's ~110 Mb) that
builds the toolchain and then tries with linux.
random.c: In function extract_entropy':
random.c:1317: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
random.c: In function random_read':
random.c:1498: warning: initialization discards qualifiers from pointer
target type
random.c:1518: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
or32-uclinux-gcc -D__KERNEL__
-I/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/include -Wall -Wstr
ict-prototypes -Werror-implicit-function-declaration -fno-strict-aliasing -O
-nostdlib -fomit-frame-point
er -I/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/arch/or32
-fsigned-char -msoft-float -pipe -ff
ixed-r2 -Wno-uninitialized -D__linux__ -nostdinc -iwithprefix include
-DKBUILD_BASENAME=serial -DEXPORT
_SYMTAB -c serial.c
serial.c: In function rs_ioctl':
serial.c:2646: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function rs_wait_until_sent':
serial.c:2921: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function block_til_ready':
serial.c:2963: warning: initialization discards qualifiers from pointer
target type
serial.c:3070: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function early_serial_setup':
serial.c:5577: internal error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See http://gcc.gnu.org/bugs.html> for instructions.
make[3]: *** [serial.o] Error 1
make[3]: Leaving directory
/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/drivers/char'
make[2]: *** [first_rule] Error 2
make[2]: Leaving directory
/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/drivers/char'
make[1]: *** [_subdir_char] Error 2
make[1]: Leaving directory
/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/drivers'
make: *** [_dir_drivers] Error 2
int __init early_serial_setup(struct serial_struct *req)
{
int i = req->line;
if (i >= NR_IRQS)
return(-ENOENT);
rs_table.magic = 0;
rs_table.baud_base = req->baud_base;
rs_table.port = req->port;
if (HIGH_BITS_OFFSET)
rs_table.port += (unsigned long) req->port_high irq;
rs_table.flags = req->flags;
rs_table.close_delay = req->close_delay;
rs_table.io_type = req->io_type;
rs_table.hub6 = req->hub6;
rs_table.iomem_base = req->iomem_base;
rs_table.iomem_reg_shift = req->iomem_reg_shift;
rs_table.type = req->type;
rs_table.xmit_fifo_size = req->xmit_fifo_size;
rs_table.custom_divisor = req->custom_divisor;
rs_table.closing_wait = req->closing_wait;
return(0);
}
|
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 26, 2004 |
Not available! | ||
|
Matjaz,
please send the preprocessed source, and I'll have a look. Heiko |
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 26, 2004 |
Not available! | ||
|
if somebody wants to take a closer look, attached is also source and
preprocessed source.
regards,
p.
* Matjaz Breskvar (phoenix@opencores.org) wrote:
Hi all!
After commiting Scott's linker bugfix i've tried various compiler/binutils
combinations. The linker fix works great with any compiler. I'd like
to thank especialy Scott and also others for all the effort.
Trying the following compilers with linux and binutils
with Scott's fix gives:
| long long bug | linux 2.4.20 |
----------------+---------------+-------------------------------+-
OC gcc-3.1 | present | compiles, runs OK |
OC gcc-3.2.3 | present | compiles, runs OK |
OC+UC gcc-3.2.3 | ? | doesn't compile |
UC gcc-3.4 | not present | compiles, didn't run it yet |
----------------------------------------------------------------+
| ecos 2.0 + Scott's updates |
----------------+---------------+-------------------------------+
OC gcc-3.1 | crash when compiling, twothreads problem |
OC gcc-3.2.3 | compiles OK, twothreads problem (?) |
OC+UC gcc-3.2.3 | compiles OK, twothreads problem |
UC gcc-3.4 | ? |
----------------------------------------------------------------+
OC gcc-3.2.3 is gcc-3.2.3 in opencores cvs dating before Heiko's merge
(i took version from 25. 5. 2003, but i don't think there
were other changes then Heiko's merge and elf/rtems target separation_
OC+UC gcc-3.2.3 is latest revision from opencores cvs with
UC's stuff merged. it dies while compiling, details bellow.
about ecos i'm not sure why i get the twothreads problem and Scott
doesn't. more about it in:
http://www.opencores.org/forums/openrisc/2004/01/000138
it would be great to hear if anybody has any idea where the problem is...
since it takes a lot of time to build whole toolchain, linux and
ecos i didn't yet try everything, but i intend to post more about all this
when i have some more time.
----
OC+UC gcc-3.2.3 crash while building linux:
The linux version is not exacly the same as in opencores cvs (i've
made quite some enhancments but serail.c stayed unchanges for some time
now) If someone would like to look into this i can provide the
script (with all the packages sources it's ~110 Mb) that
builds the toolchain and then tries with linux.
random.c: In function extract_entropy':
random.c:1317: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
random.c: In function random_read':
random.c:1498: warning: initialization discards qualifiers from pointer
target type
random.c:1518: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
or32-uclinux-gcc -D__KERNEL__
-I/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/include -Wall -Wstr
ict-prototypes -Werror-implicit-function-declaration -fno-strict-aliasing -O
-nostdlib -fomit-frame-point
er -I/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/arch/or32
-fsigned-char -msoft-float -pipe -ff
ixed-r2 -Wno-uninitialized -D__linux__ -nostdinc -iwithprefix include
-DKBUILD_BASENAME=serial -DEXPORT
_SYMTAB -c serial.c
serial.c: In function rs_ioctl':
serial.c:2646: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function rs_wait_until_sent':
serial.c:2921: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function block_til_ready':
serial.c:2963: warning: initialization discards qualifiers from pointer
target type
serial.c:3070: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function early_serial_setup':
serial.c:5577: internal error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See http://gcc.gnu.org/bugs.html> for instructions.
make[3]: *** [serial.o] Error 1
make[3]: Leaving directory
/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/drivers/char'
make[2]: *** [first_rule] Error 2
make[2]: Leaving directory
/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/drivers/char'
make[1]: *** [_subdir_char] Error 2
make[1]: Leaving directory
/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/drivers'
make: *** [_dir_drivers] Error 2
int __init early_serial_setup(struct serial_struct *req)
{
int i = req->line;
if (i >= NR_IRQS)
return(-ENOENT);
rs_table.magic = 0;
rs_table.baud_base = req->baud_base;
rs_table.port = req->port;
if (HIGH_BITS_OFFSET)
rs_table.port += (unsigned long) req->port_high irq;
rs_table.flags = req->flags;
rs_table.close_delay = req->close_delay;
rs_table.io_type = req->io_type;
rs_table.hub6 = req->hub6;
rs_table.iomem_base = req->iomem_base;
rs_table.iomem_reg_shift = req->iomem_reg_shift;
rs_table.type = req->type;
rs_table.xmit_fifo_size = req->xmit_fifo_size;
rs_table.custom_divisor = req->custom_divisor;
rs_table.closing_wait = req->closing_wait;
return(0);
} http://www.opencores.org/mailman/listinfo/openrisc
-------------- next part --------------
A non-text attachment was scrubbed...
Name: serial-src.tar.gz
Type: application/x-gzip
Size: 110185 bytes
Desc: not available
Url : http://www.opencores.org/forums/openrisc/attachments/20040126/a3f43f16/serial-src.tar-0001.bin
|
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 27, 2004 |
Not available! | ||
|
Matjaz Breskvar wrote:
about ecos i'm not sure why i get the twothreads problem and Scott
doesn't. more about it in:
http://www.opencores.org/forums/openrisc/2004/01/000138
Just as a reminder, I am using a patched version of gcc 3.1, incorporating my ABI changes for 64-bit values. Although the ABI I use is more efficient because it passes values in registers rather than memory, that is not the main reason I changed it - there were gcc bugs dealing with handling of doubles and long longs passed by reference that I was unsuccessful at tracking down. Whether these bugs were in architecture-independent gcc code or not, I never figured out. -Scott |
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 27, 2004 |
Not available! | ||
|
* Scott Furman (sfurman@rosum.com) wrote:
Matjaz Breskvar wrote:
>about ecos i'm not sure why i get the twothreads problem and Scott
>doesn't. more about it in:
>
>http://www.opencores.org/forums/openrisc/2004/01/000138
>
Just as a reminder, I am using a patched version of gcc 3.1, incorporating my ABI changes for 64-bit values. Although the ABI I use is more efficient because it passes values in registers rather than memory, that is not the main reason I changed it - there were gcc bugs dealing with handling of doubles and long longs passed by reference that I was unsuccessful at tracking down. Whether these bugs were in architecture-independent gcc code or not, I never figured out. could you share your patches so i can try ecos and linux with those too. i'd like to pinpoint where the problems are and have one stable toolchain with no known bugs that builds linux, ecos and uclinux without a problem.... if your pathes fix twothreads problem then at least we'll know where to look.... best regards, p. |
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 27, 2004 |
Not available! | ||
|
Skipped content of type multipart/alternative-------------- next part --------------
Index: gcc/config/or32/or32.c =================================================================== RCS file: /export/CVS/dave/tools/src/gcc-3.1/gcc/config/or32/or32.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -c -r1.1.1.1 -r1.2 *** gcc/config/or32/or32.c 2 Aug 2003 02:44:28 -0000 1.1.1.1 --- gcc/config/or32/or32.c 2 Aug 2003 04:56:59 -0000 1.2 *************** *** 377,382 **** --- 377,388 ---- default: abort (); } + else if (code == 'H') { + if (GET_CODE (x) == REG) + fprintf (file, "%s", reg_names[REGNO (x) + 1]); + else + abort(); + } else if (GET_CODE (x) == REG) fprintf (file, "%s", reg_names[REGNO (x)]); else if (GET_CODE (x) == MEM) *************** *** 387,389 **** --- 393,526 ---- output_addr_const (file, x); } } + + /*---------------------------------------------------------------------------*/ + /* Generate assembler code for a movdi/movdf */ + + char * + or1k_output_move_double(operands) + rtx *operands; + { + rtx xoperands[3]; + switch (GET_CODE (operands[0])) { + case REG: + if (GET_CODE (operands[1]) == REG) + { + if (REGNO (operands[0]) == REGNO (operands[1]) + 1) + { + output_asm_insn ("\tl.or \t%H0, %H1, r0", operands); + output_asm_insn ("\tl.or \t%0, %1, r0", operands); + return ""; + } + else + { + output_asm_insn ("\tl.or \t%0, %1, r0", operands); + output_asm_insn ("\tl.or \t%H0, %H1, r0", operands); + return ""; + } + } + else if (GET_CODE (operands[1]) == MEM) + { + xoperands[1] = XEXP (operands[1], 0); + if (GET_CODE (xoperands[1]) == REG) + { + xoperands[0] = operands[0]; + if (REGNO (xoperands[0]) == REGNO (xoperands[1])) + { + output_asm_insn ("\tl.lwz \t%H0, 4(%1)", xoperands); + output_asm_insn ("\tl.lwz \t%0, 0(%1)", xoperands); + return ""; + } + else + { + output_asm_insn ("\tl.lwz \t%0, 0(%1)", xoperands); + output_asm_insn ("\tl.lwz \t%H0, 4(%1)", xoperands); + return ""; + } + } + else if (GET_CODE (xoperands[1]) == PLUS) + { + if (GET_CODE (xoperands[2] = XEXP (xoperands[1], 1)) == REG) + { + xoperands[0] = operands[0]; + xoperands[1] = XEXP (xoperands[1], 0); + if (REGNO (xoperands[0]) == REGNO (xoperands[2])) + { + output_asm_insn ("\tl.lwz \t%H0, %1+4(%2)", xoperands); + output_asm_insn ("\tl.lwz \t%0, %1(%2)", xoperands); + return ""; + } + else + { + output_asm_insn ("\tl.lwz \t%0, %1(%2)", xoperands); + output_asm_insn ("\tl.lwz \t%H0, %1+4(%2)", xoperands); + return ""; + } + } + else if (GET_CODE (xoperands[2] = XEXP (xoperands[1], 0)) == REG) + { + xoperands[0] = operands[0]; + xoperands[1] = XEXP (xoperands[1], 1); + if (REGNO (xoperands[0]) == REGNO (xoperands[2])) + { + output_asm_insn ("\tl.lwz \t%H0, %1+4(%2)", xoperands); + output_asm_insn ("\tl.lwz \t%0, %1(%2)", xoperands); + return ""; + } + else + { + output_asm_insn ("\tl.lwz \t%0, %1(%2)", xoperands); + output_asm_insn ("\tl.lwz \t%H0, %1+4(%2)", xoperands); + return ""; + } + } + else abort (); + } + else abort (); + } + else if (GET_CODE (operands[1]) == CONST_INT) + { + if (INTVAL (operands[1]) + output_asm_insn ("\tl.addi \t%0, r0, -1", operands); + else + output_asm_insn ("\tl.or \t%0, r0, r0", operands); + output_asm_insn ("\tl.movhi \t%H0, hi(%1)", operands); + output_asm_insn ("\tl.ori \t%H0, %H0, lo(%1)", operands); + return ""; + } + else abort (); + case MEM: + xoperands[0] = XEXP (operands[0], 0); + if (GET_CODE (xoperands[0]) == REG) + { + xoperands[1] = operands[1]; + output_asm_insn ("\tl.sw \t0(%0), %1", xoperands); + output_asm_insn ("\tl.sw \t4(%0), %H1", xoperands); + return ""; + } + else if (GET_CODE (xoperands[0]) == PLUS) + { + if (GET_CODE (xoperands[1] = XEXP (xoperands[0], 1)) == REG) + { + xoperands[0] = XEXP (xoperands[0], 0); + xoperands[2] = operands[1]; + output_asm_insn ("\tl.sw \t%0(%1), %2", xoperands); + output_asm_insn ("\tl.sw \t%0+4(%1), %H2", xoperands); + return ""; + } + else if (GET_CODE (xoperands[1] = XEXP (xoperands[0], 0)) == REG) + { + xoperands[0] = XEXP (xoperands[0], 1); + xoperands[2] = operands[1]; + output_asm_insn ("\tl.sw \t%0(%1), %2", xoperands); + output_asm_insn ("\tl.sw \t%0+4(%1), %H2", xoperands); + return ""; + } + else abort (); + } + else abort (); + default: + abort (); + } + } + Index: gcc/config/or32/or32.h =================================================================== RCS file: /export/CVS/dave/tools/src/gcc-3.1/gcc/config/or32/or32.h,v retrieving revision 1.1.1.1 diff -c -r1.1.1.1 or32.h *** gcc/config/or32/or32.h 2 Aug 2003 02:44:28 -0000 1.1.1.1 --- gcc/config/or32/or32.h 27 Jan 2004 05:42:37 -0000 *************** *** 268,274 **** #define FRAME_POINTER_REQUIRED 0 /* Debug without frame pointer */ ! #define CAN_DEBUG_WITHOUT_FP 1 #define INITIAL_FRAME_POINTER_OFFSET(DEPTH) \ { int regno; \ --- 268,274 ---- #define FRAME_POINTER_REQUIRED 0 /* Debug without frame pointer */ ! /* #define CAN_DEBUG_WITHOUT_FP 1 */ #define INITIAL_FRAME_POINTER_OFFSET(DEPTH) \ { int regno; \ *************** *** 291,297 **** /* Register in which address to store a structure value is passed to a function. */ ! #define STRUCT_VALUE_REGNUM 0 /* Define the classes of registers for register constraints in the machine description. Also define ranges of constants. --- 291,300 ---- /* Register in which address to store a structure value is passed to a function. */ ! /*#define STRUCT_VALUE_REGNUM 0*/ ! ! /* Pass address of result struct to callee as "invisible" first argument */ ! #define STRUCT_VALUE 0 /* Define the classes of registers for register constraints in the machine description. Also define ranges of constants. *************** *** 459,479 **** otherwise, FUNC is 0. */ /* Return value is in R11. */ ! ! #define FUNCTION_VALUE(VALTYPE, FUNC) \ ! gen_rtx (REG, TYPE_MODE (VALTYPE), GP_ARG_RETURN) /* Define how to find the value returned by a library function assuming the value has mode MODE. */ /* Return value is in R11. */ ! #define LIBCALL_VALUE(MODE) gen_rtx (REG, MODE, GP_ARG_RETURN) /* Define this if PCC uses the nonreentrant convention for returning structure and union values. */ ! #define PCC_STATIC_STRUCT_RETURN /* 1 if N is a possible register number for a function value. R3 to R8 are possible (set to 1 in CALL_USED_REGISTERS) */ --- 462,486 ---- otherwise, FUNC is 0. */ /* Return value is in R11. */ ! #define FUNCTION_VALUE(VALTYPE, FUNC) LIBCALL_VALUE (TYPE_MODE (VALTYPE)) /* Define how to find the value returned by a library function assuming the value has mode MODE. */ /* Return value is in R11. */ ! #define LIBCALL_VALUE(MODE) \ ! gen_rtx (REG, \ ! ((GET_MODE_CLASS (MODE) != MODE_INT \ ! || GET_MODE_SIZE (MODE) >= 4) \ ! ? (MODE) \ ! : SImode), \ ! GP_ARG_RETURN) /* Define this if PCC uses the nonreentrant convention for returning structure and union values. */ ! /*#define PCC_STATIC_STRUCT_RETURN */ /* 1 if N is a possible register number for a function value. R3 to R8 are possible (set to 1 in CALL_USED_REGISTERS) */ *************** *** 513,541 **** ((CUM) = 0) /* Define intermediate macro to compute the size (in registers) of an argument ! for the or1k. */ ! ! #define OR1K_ARG_SIZE(MODE, TYPE, NAMED) \ ! ((MODE) != BLKmode \ ! ? (GET_MODE_SIZE (MODE) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD \ ! : (int_size_in_bytes (TYPE) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD) ! ! /* Define this to make a argumet copy and pass argument by reference */ #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED) \ ! OR1K_ARG_SIZE((MODE), (TYPE), (NAMED)) > 1 /* Update the data in CUM to advance over an argument of mode MODE and data type TYPE. (TYPE is null for libcalls where that information may not be available.) */ ! #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \ ! if (MUST_PASS_IN_STACK (MODE, TYPE)) \ ! (CUM) = GP_ARG_NUM_REG; \ ! else \ ! (CUM) += OR1K_ARG_SIZE (MODE, TYPE, NAMED) ! /* Define where to put the arguments to a function. Value is zero to push the argument on the stack, or a hard register in which to store the argument. --- 520,585 ---- ((CUM) = 0) /* Define intermediate macro to compute the size (in registers) of an argument ! for the or1k. */ + /* The ROUND_ADVANCE* macros are local to this file. */ + /* Round SIZE up to a word boundary. */ + #define ROUND_ADVANCE(SIZE) \ + (((SIZE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD) + + /* Round arg MODE/TYPE up to the next word boundary. */ + #define ROUND_ADVANCE_ARG(MODE, TYPE) \ + ((MODE) == BLKmode \ + ? ROUND_ADVANCE (int_size_in_bytes (TYPE)) \ + : ROUND_ADVANCE (GET_MODE_SIZE (MODE))) + + /* Round CUM up to the necessary point for argument MODE/TYPE. */ + /* This is either rounded to nearest reg or nearest double-reg boundary */ + #define ROUND_ADVANCE_CUM(CUM, MODE, TYPE) \ + ((((MODE) == BLKmode ? TYPE_ALIGN (TYPE) : GET_MODE_BITSIZE (MODE)) \ + > BITS_PER_WORD) \ + ? (((CUM) + 1) & ~1) \ + : (CUM)) + + /* A C expression that indicates when an argument must be passed by + reference. If nonzero for an argument, a copy of that argument is + made in memory and a pointer to the argument is passed instead of + the argument itself. The pointer is passed in whatever way is + appropriate for passing a pointer to that type. */ + /* All aggregates and arguments greater than 8 bytes are passed this way. */ #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED) \ ! (TYPE \ ! && (AGGREGATE_TYPE_P (TYPE) \ ! || int_size_in_bytes (TYPE) > 8)) /* Update the data in CUM to advance over an argument of mode MODE and data type TYPE. (TYPE is null for libcalls where that information may not be available.) */ ! /* Update the data in CUM to advance over an argument ! of mode MODE and data type TYPE. ! (TYPE is null for libcalls where that information may not be available.) */ ! #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \ ! ((CUM) = (ROUND_ADVANCE_CUM ((CUM), (MODE), (TYPE)) \ ! + ROUND_ADVANCE_ARG ((MODE), (TYPE)))) ! /* Return boolean indicating arg of type TYPE and mode MODE will be passed in ! a reg. This includes arguments that have to be passed by reference as the ! pointer to them is passed in a reg if one is available (and that is what ! we're given). ! When passing arguments NAMED is always 1. When receiving arguments NAMED ! is 1 for each argument except the last in a stdarg/varargs function. In ! a stdarg function we want to treat the last named arg as named. In a ! varargs function we want to treat the last named arg (which is ! `__builtin_va_alist') as unnamed. ! This macro is only used in this file. */ ! #define PASS_IN_REG_P(CUM, MODE, TYPE, NAMED) \ ! ((NAMED) \ ! && ((ROUND_ADVANCE_CUM ((CUM), (MODE), (TYPE)) \ ! + ROUND_ADVANCE_ARG ((MODE), (TYPE)) \ ! ! ! /* Determine where to put an argument to a function. Value is zero to push the argument on the stack, or a hard register in which to store the argument. *************** *** 547,566 **** the preceding args and about the function being called. NAMED is nonzero if this argument is a named parameter (otherwise it is an extra parameter matching an ellipsis). */ ! ! #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \ ! (((CUM) ! ? gen_rtx_REG ((MODE), (CUM) + GP_ARG_MIN_REG) \ : 0) /* For an arg passed partly in registers and partly in memory, this is the number of registers used. For args passed entirely in registers or entirely in memory, zero. */ ! #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) \ ! ((CUM) ! GP_ARG_NUM_REG ! ? GP_ARG_NUM_REG - (CUM) : 0) /* Output assembler code to FILE to increment profiler label # LABELNO for profiling a function entry. */ --- 591,608 ---- the preceding args and about the function being called. NAMED is nonzero if this argument is a named parameter (otherwise it is an extra parameter matching an ellipsis). */ ! /* On the ARC the first MAX_ARC_PARM_REGS args are normally in registers ! and the rest are pushed. */ ! #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \ ! (PASS_IN_REG_P ((CUM), (MODE), (TYPE), (NAMED)) \ ! ? gen_rtx_REG ((MODE), ROUND_ADVANCE_CUM ((CUM), (MODE), (TYPE)) + GP_ARG_MIN_REG) \ : 0) /* For an arg passed partly in registers and partly in memory, this is the number of registers used. For args passed entirely in registers or entirely in memory, zero. */ ! #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) 0 /* Output assembler code to FILE to increment profiler label # LABELNO for profiling a function entry. */ *************** *** 729,738 **** /* #define CASE_VECTOR_PC_RELATIVE 1 */ /* Specify the tree operation to be used to convert reals to integers. */ ! /* #define IMPLICIT_FIX_EXPR FIX_ROUND_EXPR */ /* This is the kind of divide that is easiest to do in the general case. */ ! /* #define EASY_DIV_EXPR TRUNC_DIV_EXPR */ /* Define this as 1 if `char' should by default be signed; else as 0. */ #define DEFAULT_SIGNED_CHAR 1 --- 771,780 ---- /* #define CASE_VECTOR_PC_RELATIVE 1 */ /* Specify the tree operation to be used to convert reals to integers. */ ! #define IMPLICIT_FIX_EXPR FIX_ROUND_EXPR /* This is the kind of divide that is easiest to do in the general case. */ ! #define EASY_DIV_EXPR TRUNC_DIV_EXPR /* Define this as 1 if `char' should by default be signed; else as 0. */ #define DEFAULT_SIGNED_CHAR 1 *************** *** 1149,1158 **** /* Define the parentheses used to group arithmetic operations in assembler code. */ - /* #define ASM_OPEN_PAREN "(" #define ASM_CLOSE_PAREN ")" - */ /* Macro for %code validation. Returns nonzero if valid. */ #define PRINT_OPERAND_PUNCT_VALID_P(code) print_operand_punct_valid_p(code) --- 1191,1198 ---- Index: gcc/config/or32/or32.md =================================================================== RCS file: /export/CVS/dave/tools/src/gcc-3.1/gcc/config/or32/or32.md,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -c -r1.1.1.1 -r1.2 *** gcc/config/or32/or32.md 2 Aug 2003 02:44:28 -0000 1.1.1.1 --- gcc/config/or32/or32.md 2 Aug 2003 04:56:59 -0000 1.2 *************** *** 153,175 **** ;; Moves ;; ! (define_insn "movdf" [(set (match_operand:DF 0 "general_operand" "=r,r,m") ! (match_operand:DF 1 "general_operand" "r,m,r"))] ! "" ! "* ! switch(which_alternative) ! { ! case 0: ! return \"l.addi \\t%0,%1,0\\t # fake insn for handling DF\"; ! case 1: ! return \"l.lwz \\t%0,%1\\t # fake insn for handling DF\"; ! case 2: ! return \"l.sw \\t%0,%1\\t # fake insn for handling DF\"; ! default: ! return \"invalid alternative\"; ! }" ! [(set_attr "type" "move,load,store") ! (set_attr "length" "1,1,1")]) (define_insn "movsf" [(set (match_operand:SF 0 "general_operand" "=r,r,m") --- 153,193 ---- ;; Moves ;; ! (define_insn "movdi" ! [(set (match_operand:DI 0 "nonimmediate_operand" "=r, r, m, r") ! (match_operand:DI 1 "general_operand" " r, m, r, i"))] ! "" ! "* ! return or1k_output_move_double (operands); ! " ! [(set_attr "length" "2,2,2,3")]) ! ! (define_insn "movdf" ! [(set (match_operand:DF 0 "nonimmediate_operand" "=r, r, m, r") ! (match_operand:DF 1 "general_operand" " r, m, r, i"))] ! "" ! "* ! return or1k_output_move_double (operands); ! " ! [(set_attr "length" "2,2,2,3")]) ! ! ;; (define_insn "movdf" [(set (match_operand:DF 0 "general_operand" "=r,r,m") ! ;; (match_operand:DF 1 "general_operand" "r,m,r"))] ! ;; "" ! ;; "* ! ;; switch(which_alternative) ! ;; { ! ;; case 0: ! ;; return \"l.addi \\t%0,%1,0\\t # fake insn for handling DF\"; ! ;; case 1: ! ;; return \"l.lwz \\t%0,%1\\t # fake insn for handling DF\"; ! ;; case 2: ! ;; return \"l.sw \\t%0,%1\\t # fake insn for handling DF\"; ! ;; default: ! ;; return \"invalid alternative\"; ! ;; }" ! ;; [(set_attr "type" "move,load,store") ! ;; (set_attr "length" "1,1,1")]) (define_insn "movsf" [(set (match_operand:SF 0 "general_operand" "=r,r,m") *************** *** 600,606 **** [(set (match_operand:SI 0 "register_operand" "=r") (mult:SI (match_operand:SI 1 "register_operand" "r") (match_operand:SI 2 "register_operand" "r")))] ! "TARGET_HARD_MUL" "l.mul \\t%0,%1,%2" [(set_attr "type" "mul") (set_attr "length" "1")]) --- 618,624 ---- [(set (match_operand:SI 0 "register_operand" "=r") (mult:SI (match_operand:SI 1 "register_operand" "r") (match_operand:SI 2 "register_operand" "r")))] ! "" "l.mul \\t%0,%1,%2" [(set_attr "type" "mul") (set_attr "length" "1")]) |
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 27, 2004 |
Not available! | ||
|
I built a or32-uclinux toolchain from the sources I used for or32-elf,
and the or32-uclinux-gcc compiled your preprocessed source with the same warnings, but no error. This is how I configured: ../gcc-3.2.3/configure --host=powerpc-apple-darwin6.8 --target=or32-uclinux --prefix=/opt/or32-uclinux --enable-threads --with-gnu-as --with-gnu-ld --enable-languages=c Heiko |
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 27, 2004 |
Not available! | ||
|
Hi All !
I think having so many different compilers is causing a little bit of mess.
Anyone disagrees if older versions of gcc are removed from opencores cvs?
(maybe not removed but at least moved to some special directory obsolete),
I'm thinking versions OC 2.95.2 and OC 3.1 should be (re)moved and OC 3.2.3
should become the official version. We also have to merge the UC version.
regards,
Damjan
----- Original Message -----
From: "Matjaz Breskvar" phoenix@opencores.org>
To: openrisc@opencores.org>
Sent: Monday, January 26, 2004 6:04 AM
Subject: [openrisc] gcc-3.2.3 bugs after merge
Hi all!
After commiting Scott's linker bugfix i've tried various compiler/binutils
combinations. The linker fix works great with any compiler. I'd like
to thank especialy Scott and also others for all the effort.
Trying the following compilers with linux and binutils
with Scott's fix gives:
| long long bug | linux 2.4.20 |
----------------+---------------+-------------------------------+-
OC gcc-3.1 | present | compiles, runs OK |
OC gcc-3.2.3 | present | compiles, runs OK |
OC+UC gcc-3.2.3 | ? | doesn't compile |
UC gcc-3.4 | not present | compiles, didn't run it yet |
----------------------------------------------------------------+
| ecos 2.0 + Scott's updates |
----------------+---------------+-------------------------------+
OC gcc-3.1 | crash when compiling, twothreads problem |
OC gcc-3.2.3 | compiles OK, twothreads problem (?) |
OC+UC gcc-3.2.3 | compiles OK, twothreads problem |
UC gcc-3.4 | ? |
----------------------------------------------------------------+
OC gcc-3.2.3 is gcc-3.2.3 in opencores cvs dating before Heiko's merge
(i took version from 25. 5. 2003, but i don't think there
were other changes then Heiko's merge and elf/rtems target separation_
OC+UC gcc-3.2.3 is latest revision from opencores cvs with
UC's stuff merged. it dies while compiling, details bellow.
about ecos i'm not sure why i get the twothreads problem and Scott
doesn't. more about it in:
http://www.opencores.org/forums/openrisc/2004/01/000138
it would be great to hear if anybody has any idea where the problem is...
since it takes a lot of time to build whole toolchain, linux and
ecos i didn't yet try everything, but i intend to post more about all this
when i have some more time.
----
OC+UC gcc-3.2.3 crash while building linux:
The linux version is not exacly the same as in opencores cvs (i've
made quite some enhancments but serail.c stayed unchanges for some time
now) If someone would like to look into this i can provide the
script (with all the packages sources it's ~110 Mb) that
builds the toolchain and then tries with linux.
random.c: In function extract_entropy':
random.c:1317: warning: passing arg 1 of signal_pending' discards
qualifiers
from pointer target type
random.c: In function random_read': random.c:1498: warning: initialization discards qualifiers from pointer target type random.c:1518: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
or32-uclinux-gcc -D__KERNEL__ -I/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/include -Wall -Wst r ict-prototypes -Werror-implicit-function-declaration -fno-strict-aliasing -O
-nostdlib -fomit-frame-point
er -I/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/arch/or32 -fsigned-char -msoft-float -pipe -ff ixed-r2 -Wno-uninitialized -D__linux__ -nostdinc -iwithprefix include -DKBUILD_BASENAME=serial -DEXPORT _SYMTAB -c serial.c serial.c: In function rs_ioctl': serial.c:2646: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function rs_wait_until_sent': serial.c:2921: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function block_til_ready': serial.c:2963: warning: initialization discards qualifiers from pointer target type serial.c:3070: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function early_serial_setup':
serial.c:5577: internal error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See http://gcc.gnu.org/bugs.html> for instructions.
make[3]: *** [serial.o] Error 1
make[3]: Leaving directory
/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/drivers/char'
make[2]: *** [first_rule] Error 2
make[2]: Leaving directory
/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/drivers/char'
make[1]: *** [_subdir_char] Error 2
make[1]: Leaving directory
/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/drivers'
make: *** [_dir_drivers] Error 2
int __init early_serial_setup(struct serial_struct *req)
{
int i = req->line;
if (i >= NR_IRQS)
return(-ENOENT);
rs_table.magic = 0;
rs_table.baud_base = req->baud_base;
rs_table.port = req->port;
if (HIGH_BITS_OFFSET)
rs_table.port += (unsigned long) req->port_high irq;
rs_table.flags = req->flags;
rs_table.close_delay = req->close_delay;
rs_table.io_type = req->io_type;
rs_table.hub6 = req->hub6;
rs_table.iomem_base = req->iomem_base;
rs_table.iomem_reg_shift = req->iomem_reg_shift;
rs_table.type = req->type;
rs_table.xmit_fifo_size = req->xmit_fifo_size;
rs_table.custom_divisor = req->custom_divisor;
rs_table.closing_wait = req->closing_wait;
return(0);
} http://www.opencores.org/mailman/listinfo/openrisc
|
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 27, 2004 |
Not available! | ||
|
"Damjan Lampret" lampret@opencores.org> writes:
Hi All !
I think having so many different compilers is causing a little bit of mess. Anyone disagrees if older versions of gcc are removed from opencores cvs? (maybe not removed but at least moved to some special directory obsolete), I'm thinking versions OC 2.95.2 and OC 3.1 should be (re)moved and OC 3.2.3 should become the official version. We also have to merge the UC version. regards, Damjan I agree with this. However, for the UC version why don't we try to get this merged into gcc. For this to happen anyone who has commited more than about 10 lines of code to the port will need to get a copyright assignment from the FSF. If the previous step is possible, we could then merge our code into gcc mainline and backport it to the 3.4 branch. James A. Morrison |
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 27, 2004 |
Not available! | ||
|
* Heiko Panther (heiko.panther@web.de) wrote:
I built a or32-uclinux toolchain from the sources I used for or32-elf,
how did you compile it. did you use the same flags as were used in linux ?
or32-uclinux-gcc -D__KERNEL__
-I/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/include -Wall -Wstr
ict-prototypes -Werror-implicit-function-declaration -fno-strict-aliasing -O
-nostdlib -fomit-frame-point
er -I/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/arch/or32
-fsigned-char -msoft-float -pipe -ff
ixed-r2 -Wno-uninitialized -D__linux__ -nostdinc -iwithprefix include
-DKBUILD_BASENAME=serial -DEXPORT
_SYMTAB -c serial.c
for example if i compile it without any flags it works:
dua:/__test# cp serial.E serial.c
dua:/__test# or32-uclinux-gcc -c serial.c
serial.c: In function rs_ioctl':
serial.c:2646: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function rs_wait_until_sent':
serial.c:2921: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function block_til_ready':
serial.c:2963: warning: initialization discards qualifiers from pointer
target type
serial.c:3070: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
dua:/__test# ll
total 835
drwxr-xr-x 2 root root 120 Jan 27 13:57 ./
drwxr-xr-x 36 root root 2216 Jan 27 13:56 ../
-rw-r--r-- 1 root root 391140 Jan 27 13:56 serial.E
-rw-r--r-- 1 root root 391140 Jan 27 13:57 serial.c
-rw-r--r-- 1 root root 65536 Jan 27 13:57 serial.o
but adding just -O makes it crash
dua:/__test# rm serial.o
dua:/__test# or32-uclinux-gcc -O -c serial.c
serial.c: In function rs_ioctl':
serial.c:2646: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function rs_wait_until_sent':
serial.c:2921: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
serial.c: In function block_til_ready':
serial.c:2963: warning: initialization discards qualifiers from pointer
target type
serial.c:3070: warning: passing arg 1 of signal_pending' discards qualifiers
from pointer target type
/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/include/asm/atomic.h:
In function
atomic_add':
/center/opencores/toolchains/oc-2.31/p_root/linux-2.4/include/asm/atomic.h:27:
internal error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See http://gcc.gnu.org/bugs.html> for instructions.
regards,
p.
and the or32-uclinux-gcc compiled your preprocessed source with the same warnings, but no error. This is how I configured: ../gcc-3.2.3/configure --host=powerpc-apple-darwin6.8 --target=or32-uclinux --prefix=/opt/or32-uclinux --enable-threads --with-gnu-as --with-gnu-ld --enable-languages=c |
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 27, 2004 |
Not available! | ||
|
Damjan Lampret wrote:
I think having so many different compilers is causing a little bit of mess.
Anyone disagrees if older versions of gcc are removed from opencores cvs? (maybe not removed but at least moved to some special directory obsolete), I'm thinking versions OC 2.95.2 and OC 3.1 should be (re)moved and OC 3.2.3 should become the official version. We also have to merge the UC version. I agree in principal, but I suggest that we need to feel confident that the newer compilers work at least somewhat correctly w/ linux, eCos, uClinux, etc, before retiring the old compilers. If I'm interpreting Matjez's experiments correctly, it doesn't seem like we're in that position yet... -Scott |
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 27, 2004 |
Not available! | ||
|
James Morrison wrote:
I agree with this. However, for the UC version why don't we try to get
Before we do this, I think we really need to revisit the idea of
changing the current ABI for at least a few reasons:
* Last I looked, the UC port of gcc 3.4 defines the caller-saved and
callee-saved regs differently than the OC versions. This will
render hand-written assembly code unusable when calling functions
compiled with that version of gcc. (I believe the reason for this
mismatch is that there was an agreement last year to change the OR
architecture manual to reflect the OC gcc 3.1 implementation, but
it never happened. Then the UC guys followed the (outdated)
architecture manual for their gcc 3.4 port.)
* The old-fashioned PCC-style struct return currently used (in all
OR gcc ports) is not thread-safe. (The compiler allocates memory
for return of a struct or 64-bit value in the data segment rather
than having the caller allocate the memory on the stack.)
* Passing 64-bit values and small structs to callees in regs is more
efficient (in memory and time) than the current scheme of passing
such values in by reference to a caller-allocated memory structure.
-Scott
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.opencores.org/forums/openrisc/attachments/20040127/047a2fa0/attachment.htm
this merged into gcc. For this to happen anyone who has commited more than about 10 lines of code to the port will need to get a copyright assignment from the FSF. If the previous step is possible, we could then merge our code into gcc mainline and backport it to the 3.4 branch. |
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 28, 2004 |
Not available! | ||
|
* Scott Furman (sfurman@rosum.com) wrote:
Damjan Lampret wrote:
>I think having so many different compilers is causing a little bit of mess.
>Anyone disagrees if older versions of gcc are removed from opencores cvs? >(maybe not removed but at least moved to some special directory obsolete), >I'm thinking versions OC 2.95.2 and OC 3.1 should be (re)moved and OC 3.2.3 >should become the official version. We also have to merge the UC version. > > I agree in principal, but I suggest that we need to feel confident that the newer compilers work at least somewhat correctly w/ linux, eCos, uClinux, etc, before retiring the old compilers. If I'm interpreting Matjez's experiments correctly, it doesn't seem like we're in that position yet... The most important goal is to have a Stable toolchain, i do not care much about what is it's origin much. By that i do not mean that it builds just ecos fine but also at least linux & uclinux. The problem right now is that every compiler we have has some (small) problems here or there. Right now i'm going to try gcc-3.1 with Scott's patch and it if works ok for ecos & uclinux & linux i'll be very tempted to use that one. (porting to newer stable versions of gcc is not problematic at all) regards, p. |
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 28, 2004 |
Not available! | ||
|
* Scott Furman (sfurman@rosum.com) wrote:
James Morrison wrote:
>I agree with this. However, for the UC version why don't we try to get
>this merged into gcc. For this to happen anyone who has commited more >than about 10 lines of code to the port will need to get a copyright >assignment from the FSF. If the previous step is possible, we could then >merge our code into gcc mainline and backport it to the 3.4 branch. > > Before we do this, I think we really need to revisit the idea of changing the current ABI for at least a few reasons: * Last I looked, the UC port of gcc 3.4 defines the caller-saved and callee-saved regs differently than the OC versions. This will render hand-written assembly code unusable when calling functions compiled with that version of gcc. (I believe the reason for this mismatch is that there was an agreement last year to change the OR architecture manual to reflect the OC gcc 3.1 implementation, but it never happened. Then the UC guys followed the (outdated) architecture manual for their gcc 3.4 port.) I was under impression that OC+UC gcc-3.2.3 had this convention as in gcc-3.1 (and that it would change in gcc-3.4 also). in any case we will go forward with the convention as implemented, since nobody really wants to break working hand-written assembly. We'll also make sure to update the architectual manual as soon as possible.
* The old-fashioned PCC-style struct return currently used (in all
OR gcc ports) is not thread-safe. (The compiler allocates memory for return of a struct or 64-bit value in the data segment rather than having the caller allocate the memory on the stack.) * Passing 64-bit values and small structs to callees in regs is more efficient (in memory and time) than the current scheme of passing such values in by reference to a caller-allocated memory structure. Right now i'm in the show-me-working-compiler mode. Heiko is looking at merged gcc-3.2.3 bug and i'll check your patches. When we have a compiler that works ok for linux & uclinux & ecos and everybody is happy with the choice i'll just (re)move older/other versions and we can all focus on enhancing the chosen one(tm). best regards, m. |
|||
|
gcc-3.2.3 bugs after merge
by Unknown on Jan 28, 2004 |
Not available! | ||
|
Matjaz Breskvar wrote:
i've patched the oc gcc-3.1 and it aplied cleanly. i tried to compile
it but compilation failed, due to some poisoned defines... did you just remove it from poison list in gcc/system.h ? I don't have any issues w/ poisoned macros. I think it's because I'm using an old version of gcc (2.9.6) to build my gcc cross-compiler. My build log is attached. -Scott -------------- next part -------------- Mon Jan 26 20:13:06 PST 2004 Configuring for a i686-pc-linux-gnu host. *** This configuration is not supported in the following subdirectories: target-libffi target-boehm-gc target-zlib target-libjava target-libchill target-libf2c zlib fastjar target-libobjc (Any other directories should still work fine.) Created "Makefile" in /home/sfurman/or32-elf-src/b-gcc Configuring libiberty... creating cache ../config.cache checking whether to enable maintainer-specific portions of Makefiles... no checking for makeinfo... makeinfo checking for perl... perl checking host system type... i686-pc-linux-gnu checking build system type... i686-pc-linux-gnu checking for ar... ar checking for ranlib... ranlib checking for gcc... gcc checking whether we are using GNU C... yes checking whether gcc accepts -g... yes checking for POSIXized ISC... no checking for working const... yes checking for inline... inline checking for a BSD compatible install... /usr/bin/install -c checking how to run the C preprocessor... gcc -E checking for sys/file.h... yes checking for sys/param.h... yes checking for limits.h... yes checking for stdlib.h... yes checking for string.h... yes checking for unistd.h... yes checking for strings.h... yes checking for sys/time.h... yes checking for time.h... yes checking for sys/resource.h... yes checking for sys/stat.h... yes checking for sys/mman.h... yes checking for fcntl.h... yes checking for alloca.h... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking whether time.h and sys/time.h may both be included... yes checking whether errno must be declared... no checking for ANSI C header files... yes checking for uintptr_t... no checking whether the C compiler (gcc -g -O2 ) works... yes checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... yes checking for asprintf... yes checking for atexit... yes checking for basename... yes checking for bcmp... yes checking for bcopy... yes checking for bsearch... yes checking for bzero... yes checking for calloc... yes checking for clock... yes checking for ffs... yes checking for getcwd... yes checking for getpagesize... yes checking for index... yes checking for insque... yes checking for memchr... yes checking for memcmp... yes checking for memcpy... yes checking for memmove... yes checking for memset... yes checking for mkstemps... no checking for putenv... yes checking for random... yes checking for rename... yes checking for rindex... yes checking for setenv... yes checking for sigsetmask... yes checking for strcasecmp... yes checking for strchr... yes checking for strdup... yes checking for strncasecmp... yes checking for strrchr... yes checking for strstr... yes checking for strtod... yes checking for strtol... yes checking for strtoul... yes checking for tmpnam... yes checking for vasprintf... yes checking for vfprintf... yes checking for vprintf... yes checking for vsprintf... yes checking for waitpid... yes checking whether alloca needs Cray hooks... no checking stack direction for C alloca... 0 checking for pid_t... yes checking for vfork.h... no checking for working vfork... checking for vfork... yes yes checking for sys_errlist... yes checking for sys_nerr... yes checking for sys_siglist... yes checking for getrusage... yes checking for on_exit... yes checking for psignal... yes checking for strerror... yes checking for strsignal... yes checking for sysconf... yes checking for times... yes checking for sbrk... yes checking for gettimeofday... yes checking for unistd.h... (cached) yes checking for getpagesize... (cached) yes checking for working mmap... no checking for working strncmp... no updating cache ../config.cache creating ./config.status creating Makefile creating testsuite/Makefile creating config.h Configuring gcc... loading cache ../config.cache checking LIBRARY_PATH variable... ok checking GCC_EXEC_PREFIX variable... ok checking host system type... i686-pc-linux-gnu checking target system type... or32-unknown-elf checking build system type... i686-pc-linux-gnu checking for gcc... (cached) gcc checking whether the C compiler (gcc -g -O2 ) works... yes checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking whether gcc and cc understand -c and -o together... yes checking whether gcc accepts -Wno-long-long... yes checking how to run the C preprocessor... (cached) gcc -E checking for inline... (cached) inline checking for volatile... yes checking for long double... yes checking for long long int... yes checking for __int64... no checking for built-in _Bool... no checking size of short... 2 checking size of int... 4 checking size of long... 4 checking size of long long... 8 checking execution character set... ASCII checking whether make sets ${MAKE}... no checking whether a default assembler was specified... no checking whether a default linker was specified... no checking for GNU C library... yes checking for mawk... no checking for gawk... gawk checking whether ln works... yes checking whether ln -s works... yes checking for ranlib... (cached) ranlib checking for a BSD compatible install... (cached) /usr/bin/install -c checking for ANSI C header files... (cached) yes checking whether time.h and sys/time.h may both be included... (cached) yes checking for working stdbool.h... yes checking whether string.h and strings.h may both be included... yes checking for sys/wait.h that is POSIX.1 compatible... (cached) yes checking for limits.h... (cached) yes checking for stddef.h... yes checking for string.h... (cached) yes checking for strings.h... (cached) yes checking for stdlib.h... (cached) yes checking for time.h... (cached) yes checking for fcntl.h... (cached) yes checking for unistd.h... (cached) yes checking for sys/file.h... (cached) yes checking for sys/time.h... (cached) yes checking for sys/resource.h... (cached) yes checking for sys/param.h... (cached) yes checking for sys/times.h... yes checking for sys/stat.h... (cached) yes checking for direct.h... no checking for malloc.h... yes checking for langinfo.h... yes checking for thread.h... no checking for pthread.h... yes checking for CHAR_BIT... yes checking byte ordering... little-endian checking floating point format... IEEE (little-endian) checking for gnatbind... no checking for compiler driver that understands Ada... no checking for mktemp... yes checking for makeinfo... (cached) makeinfo checking for modern makeinfo... yes checking for recent Pod::Man... yes checking for flex... flex checking for bison... bison checking for collect2 libraries... none required checking for library containing exc_resume... no checking for preprocessor stringizing operator... yes checking for inttypes.h... yes checking for times... (cached) yes checking for clock... (cached) yes checking for dup2... yes checking for kill... yes checking for getrlimit... yes checking for setrlimit... yes checking for atoll... yes checking for atoq... no checking for sysconf... (cached) yes checking for strsignal... (cached) yes checking for putc_unlocked... yes checking for fputc_unlocked... yes checking for fputs_unlocked... yes checking for fwrite_unlocked... yes checking for fprintf_unlocked... no checking for getrusage... (cached) yes checking for nl_langinfo... yes checking for lstat... yes checking for ssize_t... yes checking for uid_t in sys/types.h... yes checking type of array argument to getgroups... gid_t checking whether the printf functions support %p... yes checking for pid_t... (cached) yes checking for vfork.h... (cached) no checking for working vfork... (cached) yes checking for getpagesize... (cached) yes checking for working mmap from /dev/zero... yes checking for working mmap with MAP_ANON(YMOUS)... yes checking for working mmap of a file... yes checking for iconv... yes checking for iconv declaration... extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking whether getenv is declared... yes checking whether atol is declared... yes checking whether sbrk is declared... yes checking whether abort is declared... yes checking whether atof is declared... yes checking whether getcwd is declared... yes checking whether getwd is declared... yes checking whether strsignal is declared... yes checking whether putc_unlocked is declared... yes checking whether fputs_unlocked is declared... yes checking whether fwrite_unlocked is declared... yes checking whether fprintf_unlocked is declared... no checking whether strstr is declared... yes checking whether errno is declared... yes checking whether malloc is declared... yes checking whether realloc is declared... yes checking whether calloc is declared... yes checking whether free is declared... yes checking whether basename is declared... yes checking whether getopt is declared... yes checking whether clock is declared... yes checking whether getrlimit is declared... yes checking whether setrlimit is declared... yes checking whether getrusage is declared... yes checking whether times is declared... yes checking for struct tms... yes checking for clock_t... yes checking if mkdir takes one argument... no Using `../../gcc/gcc/config/or32/or32.c' for machine-specific logic. Using `../../gcc/gcc/config/or32/or32.md' as machine description file. Using the following target machine macro files: ../../gcc/gcc/config/dbxelf.h ../../gcc/gcc/config/elfos.h ../../gcc/gcc/config/or32/or32.h ../../gcc/gcc/config/or32/elf.h checking for library containing strerror... none required checking for working const... (cached) yes checking for off_t... yes checking for size_t... yes checking for working alloca.h... (cached) yes checking for alloca... yes checking whether we are using the GNU C Library 2.1 or newer... yes checking for argz.h... yes checking for limits.h... (cached) yes checking for locale.h... yes checking for nl_types.h... yes checking for malloc.h... (cached) yes checking for stddef.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for unistd.h... (cached) yes checking for sys/param.h... (cached) yes checking for feof_unlocked... yes checking for fgets_unlocked... yes checking for getcwd... (cached) yes checking for getegid... yes checking for geteuid... yes checking for getgid... yes checking for getuid... yes checking for mempcpy... yes checking for munmap... yes checking for putenv... (cached) yes checking for setenv... (cached) yes checking for setlocale... yes checking for stpcpy... yes checking for strchr... (cached) yes checking for strcasecmp... (cached) yes checking for strdup... (cached) yes checking for strtoul... (cached) yes checking for tsearch... yes checking for __argz_count... yes checking for __argz_stringify... yes checking for __argz_next... yes checking for iconv... (cached) yes checking for iconv declaration... (cached) extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking for nl_langinfo and CODESET... yes checking for LC_MESSAGES... yes checking whether NLS is requested... yes checking whether included gettext is requested... no checking for libintl.h... yes checking for GNU gettext in libc... yes checking for dcgettext... yes checking for msgfmt... /usr/bin/msgfmt checking for gmsgfmt... /usr/bin/msgfmt checking for xgettext... /usr/bin/xgettext checking for bison... bison checking version of bison... 1.28, ok checking for catalogs to be installed... da es fr ja sv checking what assembler to use... checking what linker to use... checking what nm to use... checking what objdump to use... checking assembler alignment features... none checking assembler subsection support... no checking assembler weak support... no checking assembler hidden support... no checking assembler leb128 support... no checking assembler eh_frame optimization... no checking assembler section merging support... no checking assembler dwarf2 debug_line support... no checking assembler --gdwarf2 support... no checking assembler --gstabs support... no checking linker PT_GNU_EH_FRAME support... no Using ggc-page for garbage collection. checking whether to enable maintainer-specific portions of Makefiles... no Links are now set up to build a cross-compiler for or32-unknown-elf from i686-pc-linux-gnu. updating cache ../config.cache creating ./config.status creating Makefile creating intl/Makefile creating fixinc/Makefile creating gccbug creating mklibgcc creating auto-host.h make[1]: Entering directory `/home/sfurman/or32-elf-src/b-gcc/libiberty' if [ x"" != x ] && [ ! -d pic ]; then \ mkdir pic; \ else true; fi touch stamp-picdir if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/argv.c -o pic/argv.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/argv.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/alloca.c -o pic/alloca.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/alloca.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/choose-temp.c -o pic/choose-temp.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/choose-temp.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/concat.c -o pic/concat.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/concat.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/cplus-dem.c -o pic/cplus-dem.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/cplus-dem.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/cp-demangle.c -o pic/cp-demangle.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/cp-demangle.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/dyn-string.c -o pic/dyn-string.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/dyn-string.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/fdmatch.c -o pic/fdmatch.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/fdmatch.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/fnmatch.c -o pic/fnmatch.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/fnmatch.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/getopt.c -o pic/getopt.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/getopt.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/getopt1.c -o pic/getopt1.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/getopt1.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/getpwd.c -o pic/getpwd.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/getpwd.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/getruntime.c -o pic/getruntime.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/getruntime.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/hashtab.c -o pic/hashtab.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/hashtab.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/hex.c -o pic/hex.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/hex.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/floatformat.c -o pic/floatformat.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/floatformat.c In file included from /usr/include/math.h:350, from ../../gcc/libiberty/floatformat.c:21: /usr/include/bits/mathinline.h: In function `__sgn1l': /usr/include/bits/mathinline.h:469: warning: traditional C rejects automatic aggregate initialization if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/lbasename.c -o pic/lbasename.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/lbasename.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/md5.c -o pic/md5.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/md5.c ../../gcc/libiberty/md5.c:356:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:357:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:358:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:359:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:360:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:361:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:362:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:363:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:364:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:365:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:366:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:367:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:368:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:369:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:370:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:371:7: warning: function-like macro "FG" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:374:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:375:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:376:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:377:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:378:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:379:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:380:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:381:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:382:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:383:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:384:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:385:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:386:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:387:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:388:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:389:7: warning: function-like macro "FH" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:392:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:393:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:394:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:395:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:396:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:397:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:398:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:399:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:400:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:401:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:402:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:403:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:404:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:405:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:406:7: warning: function-like macro "FI" must be used with arguments in traditional C ../../gcc/libiberty/md5.c:407:7: warning: function-like macro "FI" must be used with arguments in traditional C if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/make-temp-file.c -o pic/make-temp-file.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/make-temp-file.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/objalloc.c -o pic/objalloc.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/objalloc.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/obstack.c -o pic/obstack.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/obstack.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/partition.c -o pic/partition.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/partition.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/pexecute.c -o pic/pexecute.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/pexecute.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/regex.c -o pic/regex.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/regex.c In file included from ../../gcc/libiberty/regex.c:649: ../../gcc/libiberty/regex.c: In function `byte_compile_range': ../../gcc/libiberty/regex.c:4602: warning: signed and unsigned type in conditional expression ../../gcc/libiberty/regex.c:4612: warning: signed and unsigned type in conditional expression ../../gcc/libiberty/regex.c:4612: warning: signed and unsigned type in conditional expression ../../gcc/libiberty/regex.c: At top level: ../../gcc/libiberty/regex.c:1380: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1382: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1383: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1385: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1386: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1388: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1389: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1391: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1392: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1394: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1395: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1397: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1398: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1400: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1401: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1403: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1404: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1406: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1407: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1409: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1410: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1412: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1413: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1415: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1416: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1418: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1419: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1421: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1422: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1424: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1425: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c:1427: warning: traditional C rejects string concatenation ../../gcc/libiberty/regex.c: In function `xregcomp': ../../gcc/libiberty/regex.c:8099: warning: signed and unsigned type in conditional expression ../../gcc/libiberty/regex.c: In function `xregerror': ../../gcc/libiberty/regex.c:8234: warning: unused parameter `preg' if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/safe-ctype.c -o pic/safe-ctype.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/safe-ctype.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/sort.c -o pic/sort.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/sort.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/spaces.c -o pic/spaces.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/spaces.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/splay-tree.c -o pic/splay-tree.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/splay-tree.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/strerror.c -o pic/strerror.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/strerror.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/strsignal.c -o pic/strsignal.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/strsignal.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xatexit.c -o pic/xatexit.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xatexit.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xexit.c -o pic/xexit.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xexit.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xmalloc.c -o pic/xmalloc.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xmalloc.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xmemdup.c -o pic/xmemdup.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xmemdup.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xstrdup.c -o pic/xstrdup.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xstrdup.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xstrerror.c -o pic/xstrerror.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/xstrerror.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/ternary.c -o pic/ternary.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/ternary.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/fibheap.c -o pic/fibheap.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/fibheap.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/mkstemps.c -o pic/mkstemps.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/mkstemps.c if [ x"" != x ]; then \ gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/strncmp.c -o pic/strncmp.o; \ else true; fi gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I../../gcc/libiberty/../include -W -Wall -Wtraditional -pedantic ../../gcc/libiberty/strncmp.c rm -f libiberty.a pic/libiberty.a ar rc libiberty.a \ argv.o alloca.o choose-temp.o concat.o cplus-dem.o cp-demangle.o dyn-string.o fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o getruntime.o hashtab.o hex.o floatformat.o lbasename.o md5.o make-temp-file.o objalloc.o obstack.o partition.o pexecute.o regex.o safe-ctype.o sort.o spaces.o splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o xmemdup.o xstrdup.o xstrerror.o ternary.o fibheap.o mkstemps.o strncmp.o ranlib libiberty.a if [ x"" != x ]; then \ cd pic; \ ar rc libiberty.a \ argv.o alloca.o choose-temp.o concat.o cplus-dem.o cp-demangle.o dyn-string.o fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o getruntime.o hashtab.o hex.o floatformat.o lbasename.o md5.o make-temp-file.o objalloc.o obstack.o partition.o pexecute.o regex.o safe-ctype.o sort.o spaces.o splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o xmemdup.o xstrdup.o xstrerror.o ternary.o fibheap.o mkstemps.o strncmp.o; \ ranlib libiberty.a; \ cd ..; \ else true; fi rm -f needed-list; touch needed-list; \ for f in atexit calloc memchr memcmp memcpy memmove memset rename strchr strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf vfork waitpid bcmp bcopy bzero; do \ for g in mkstemps.o strncmp.o ; do \ case "$g" in \ *$f*) echo $g >> needed-list ;; \ esac; \ done; \ done echo argv.o alloca.o choose-temp.o concat.o cplus-dem.o cp-demangle.o dyn-string.o fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o getruntime.o hashtab.o hex.o floatformat.o lbasename.o md5.o make-temp-file.o objalloc.o obstack.o partition.o pexecute.o regex.o safe-ctype.o sort.o spaces.o splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o xmemdup.o xstrdup.o xstrerror.o ternary.o fibheap.o > required-list make[2]: Entering directory `/home/sfurman/or32-elf-src/b-gcc/libiberty/testsuite' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/sfurman/or32-elf-src/b-gcc/libiberty/testsuite' make[1]: Leaving directory `/home/sfurman/or32-elf-src/b-gcc/libiberty' make[1]: Entering directory `/home/sfurman/or32-elf-src/b-gcc/gcc' HEADERS="auto-host.h ansidecl.h dbxelf.h elfos.h or32/or32.h or32/elf.h defaults.h" DEFINES="POSIX" \ TARGET_CPU_DEFAULT="" \ /bin/sh ../../gcc/gcc/mkconfig.sh config.h HEADERS="auto-host.h ansidecl.h dbxelf.h elfos.h or32/or32.h or32/elf.h defaults.h" DEFINES="POSIX" \ TARGET_CPU_DEFAULT="" \ /bin/sh ../../gcc/gcc/mkconfig.sh hconfig.h gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/gengenrtl.c -o gengenrtl.o gcc -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -o gengenrtl \ gengenrtl.o ../libiberty/libiberty.a ./gengenrtl -h > tmp-genrtl.h /bin/sh ../../gcc/gcc/move-if-change tmp-genrtl.h genrtl.h ./gengenrtl > tmp-genrtl.c /bin/sh ../../gcc/gcc/move-if-change tmp-genrtl.c genrtl.c echo timestamp > s-genrtl gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/genflags.c -o genflags.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/rtl.c -o rtl.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/read-rtl.c -o read-rtl.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/bitmap.c -o bitmap.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/ggc-none.c -o ggc-none.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/gensupport.c -o gensupport.o ltf="../../gcc/gcc/cp/cp-tree.def"; for f in $ltf; do \ echo "#include \"$f\""; \ done | sed 's|../../gcc/gcc/||' > tmp-gencheck.h /bin/sh ../../gcc/gcc/move-if-change tmp-gencheck.h gencheck.h echo timestamp > s-gencheck gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include \ ../../gcc/gcc/gencheck.c -o gencheck.o gcc -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -o gencheck \ gencheck.o ../libiberty/libiberty.a ./gencheck > tmp-check.h /bin/sh ../../gcc/gcc/move-if-change tmp-check.h tree-check.h echo timestamp > s-check gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/print-rtl.c -o print-rtl.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/errors.c -o errors.o gcc -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -o genflags \ genflags.o rtl.o read-rtl.o bitmap.o ggc-none.o gensupport.o print-rtl.o errors.o ../libiberty/libiberty.a ./genflags ../../gcc/gcc/config/or32/or32.md > tmp-flags.h /bin/sh ../../gcc/gcc/move-if-change tmp-flags.h insn-flags.h echo timestamp > s-flags gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/genconstants.c -o genconstants.o gcc -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -o genconstants \ genconstants.o rtl.o read-rtl.o bitmap.o ggc-none.o gensupport.o errors.o ../libiberty/libiberty.a ./genconstants ../../gcc/gcc/config/or32/or32.md > tmp-constants.h /bin/sh ../../gcc/gcc/move-if-change tmp-constants.h insn-constants.h echo timestamp > s-constants (cd intl && /usr/bin/make all) make[2]: Entering directory `/home/sfurman/or32-elf-src/b-gcc/gcc/intl' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/sfurman/or32-elf-src/b-gcc/gcc/intl' test -d po || mkdir po /usr/bin/msgfmt --statistics -o po/da.gmo ../../gcc/gcc/po/da.po 942 translated messages, 727 fuzzy translations, 1379 untranslated messages. test -d po || mkdir po /usr/bin/msgfmt --statistics -o po/es.gmo ../../gcc/gcc/po/es.po 3048 translated messages. test -d po || mkdir po /usr/bin/msgfmt --statistics -o po/fr.gmo ../../gcc/gcc/po/fr.po 3048 translated messages. test -d po || mkdir po /usr/bin/msgfmt --statistics -o po/ja.gmo ../../gcc/gcc/po/ja.po 3048 translated messages. test -d po || mkdir po /usr/bin/msgfmt --statistics -o po/sv.gmo ../../gcc/gcc/po/sv.po 1196 translated messages, 1 fuzzy translation, 2456 untranslated messages. gcc -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include \ -c ../../gcc/gcc/c-parse.c -o c-parse.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-lang.c -o c-lang.o HEADERS="or32/or32-protos.h" DEFINES="" TARGET_CPU_DEFAULT="" \ /bin/sh ../../gcc/gcc/mkconfig.sh tm_p.h gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/genpreds.c -o genpreds.o gcc -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -o genpreds \ genpreds.o ../libiberty/libiberty.a ./genpreds > tmp-preds.h /bin/sh ../../gcc/gcc/move-if-change tmp-preds.h tm-preds.h echo timestamp > s-preds gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/attribs.c -o attribs.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-errors.c -o c-errors.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-lex.c -o c-lex.o ../../gcc/gcc/c-lex.c:110:59: warning: function-like macro "strcmp" must be used with arguments in traditional C gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-pragma.c -o c-pragma.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-decl.c -o c-decl.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-typeck.c -o c-typeck.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-convert.c -o c-convert.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-aux-info.c -o c-aux-info.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-common.c -o c-common.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-format.c -o c-format.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-semantics.c -o c-semantics.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/genconfig.c -o genconfig.o gcc -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -o genconfig \ genconfig.o rtl.o read-rtl.o bitmap.o ggc-none.o gensupport.o print-rtl.o errors.o ../libiberty/libiberty.a ./genconfig ../../gcc/gcc/config/or32/or32.md > tmp-config.h /bin/sh ../../gcc/gcc/move-if-change tmp-config.h insn-config.h echo timestamp > s-config gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/c-objc-common.c -o c-objc-common.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cpplib.c -o cpplib.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cpplex.c -o cpplex.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cppmacro.c -o cppmacro.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cppexp.c -o cppexp.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cppfiles.c -o cppfiles.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cpphash.c -o cpphash.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cpperror.c -o cpperror.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cppinit.c -o cppinit.o gcc -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include \ -DGCC_INCLUDE_DIR=\"/home/sfurman/tools/i386-redhat-linux/lib/gcc-lib/or32-elf/3.1/include\" -DGPLUSPLUS_INCLUDE_DIR=\"/home/sfurman/tools/i386-redhat-linux/lib/gcc-lib/or32-elf/3.1/../../../..`echo /home/sfurman/tools/i386-redhat-linux | sed -e 's|^/home/sfurman/tools/i386-redhat-linux||' -e 's|/[^/]*|/..|g'`/include/g++-v3\" -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"/home/sfurman/tools/i386-redhat-linux/lib/gcc-lib/or32-elf/3.1/../../../..`echo /home/sfurman/tools/i386-redhat-linux | sed -e 's|^/home/sfurman/tools/i386-redhat-linux||' -e 's|/[^/]*|/..|g'`/include/g++-v3/or32-elf\" -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"/home/sfurman/tools/i386-redhat-linux/lib/gcc-lib/or32-elf/3.1/../../../..`echo /home/sfurman/tools/i386-redhat-linux | sed -e 's|^/home/sfurman/tools/i386-redhat-linux||' -e 's|/[^/]*|/..|g'`/include/g++-v3/backward\" -DLOCAL_INCLUDE_DIR=\"/usr/local/include\" -DCROSS_INCLUDE_DIR=\"/home/sfurman/tools/i386-redhat-linux/lib/gcc-lib/or32-elf/3.1/../../../../or32-elf/sys-include\" -DTOOL_INCLUDE_DIR=\"/home/sfurman/tools/i386-redhat-linux/lib/gcc-lib/or32-elf/3.1/../../../../or32-elf/include\" \ -c ../../gcc/gcc/cppdefault.c -o cppdefault.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/hashtable.c -o hashtable.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/line-map.c -o line-map.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/mkdeps.c -o mkdeps.o gcc -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include \ -DPREFIX=\"/home/sfurman/tools/i386-redhat-linux\" \ -c ../../gcc/gcc/prefix.c -o prefix.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/version.c -o version.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/mbchar.c -o mbchar.o rm -rf libcpp.a ar rc libcpp.a cpplib.o cpplex.o cppmacro.o cppexp.o cppfiles.o cpphash.o cpperror.o cppinit.o cppdefault.o hashtable.o line-map.o mkdeps.o prefix.o version.o mbchar.o ranlib libcpp.a gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/main.c -o main.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/alias.c -o alias.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/bb-reorder.c -o bb-reorder.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/gencodes.c -o gencodes.o gcc -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -o gencodes \ gencodes.o rtl.o read-rtl.o bitmap.o ggc-none.o gensupport.o print-rtl.o errors.o ../libiberty/libiberty.a ./gencodes ../../gcc/gcc/config/or32/or32.md > tmp-codes.h /bin/sh ../../gcc/gcc/move-if-change tmp-codes.h insn-codes.h echo timestamp > s-codes gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/builtins.c -o builtins.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/caller-save.c -o caller-save.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/calls.c -o calls.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cfg.c -o cfg.o ../../gcc/gcc/cfg.c: In function `dump_flow_info': ../../gcc/gcc/cfg.c:503: warning: ISO C89 does not support the `ll' length modifier ../../gcc/gcc/cfg.c: In function `dump_edge_info': ../../gcc/gcc/cfg.c:553: warning: ISO C89 does not support the `ll' length modifier gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cfganal.c -o cfganal.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cfgbuild.c -o cfgbuild.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cfgcleanup.c -o cfgcleanup.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cfglayout.c -o cfglayout.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cfgloop.c -o cfgloop.o gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/cfgrtl.c -o cfgrtl.o ../../gcc/gcc/cfgrtl.c: In function `dump_bb': ../../gcc/gcc/cfgrtl.c:1384: warning: ISO C89 does not support the `ll' length modifier gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/genattr.c -o genattr.o gcc -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -DGENERATOR_FILE -o genattr \ genattr.o rtl.o read-rtl.o bitmap.o ggc-none.o gensupport.o print-rtl.o errors.o ../libiberty/libiberty.a ./genattr ../../gcc/gcc/config/or32/or32.md > tmp-attr.h /bin/sh ../../gcc/gcc/move-if-change tmp-attr.h insn-attr.h echo timestamp > s-attr gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I. -I../../gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/combine.c -o combine.o ../../gcc/gcc/combine.c: In function `combine_simplify_rtx': ../../gcc/gcc/combine.c:4029: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c: In function `simplify_if_then_else': ../../gcc/gcc/combine.c:4789: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:4804: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c: In function `extended_count': ../../gcc/gcc/combine.c:8691: warning: signed and unsigned type in conditional expression ../../gcc/gcc/combine.c: In function `simplify_shift_const': ../../gcc/gcc/combine.c:8919: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:9037: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:9079: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:9113: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:9270: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:9325: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:9344: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:9368: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:9433: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:9436: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:9499: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c: In function `recog_for_combine': ../../gcc/gcc/combine.c:9624: warning: pointer targets in passing arg 1 of `do_SUBST_INT' differ in signedness ../../gcc/gcc/combine.c: In function `simplify_comparison': ../../gcc/gcc/combine.c:10405: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:10489: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:10746: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:10822: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:10835: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:10910: warning: comparison between signed and unsigned ../../gcc/gcc/combine.c:10912: warning: comparison between signed and unsigned gcc -c -DIN_GCC -DCROSS_COMPILE -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototyp TRUNCATED |
|||

1/2 
