This is the mail archive of the gcc-regression@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: GCC build failed with your patch.


On Sat, May 27, 2000 at 07:26:14PM -0700, GCC regression checker wrote:
> insn-emit.c: In function `gen_untyped_call':
> insn-emit.c:10517: too many arguments to function `gen_call'
> make[1]: *** [insn-emit.o] Error 1


        * config/rs6000/rs6000.md (untyped_call): Use GEN_CALL.

Index: rs6000.md
===================================================================
RCS file: /cvs/gcc/egcs/gcc/config/rs6000/rs6000.md,v
retrieving revision 1.90
diff -c -p -d -r1.90 rs6000.md
*** rs6000.md	2000/05/27 07:44:25	1.90
--- rs6000.md	2000/05/28 02:58:34
*************** operands[2] = GEN_INT (INTVAL (operands[
*** 10060,10066 ****
  {
    int i;
  
!   emit_call_insn (gen_call (operands[0], const0_rtx, const0_rtx, const0_rtx));
  
    for (i = 0; i < XVECLEN (operands[2], 0); i++)
      {
--- 10060,10066 ----
  {
    int i;
  
!   emit_call_insn (GEN_CALL (operands[0], const0_rtx, const0_rtx, const0_rtx));
  
    for (i = 0; i < XVECLEN (operands[2], 0); i++)
      {

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]