Bug 101314 - ICE: in expand_call, at calls.c:4986
Summary: ICE: in expand_call, at calls.c:4986
Status: RESOLVED DUPLICATE of bug 100536
Alias: None
Product: gcc
Classification: Unclassified
Component: c (show other bugs)
Version: 12.0
: P3 normal
Target Milestone: ---
Assignee: Not yet assigned to anyone
URL:
Keywords: error-recovery, ice-on-invalid-code
Depends on:
Blocks:
 
Reported: 2021-07-04 12:12 UTC by John X
Modified: 2022-04-06 18:34 UTC (History)
0 users

See Also:
Host:
Target:
Build:
Known to work:
Known to fail:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description John X 2021-07-04 12:12:29 UTC
$ cat test.c

struct A
{
  char x[0xffffffff];
};

extern void foo(struct A);

struct A a;

void main(void)
{
  foo(a);
}

--------------------------------

$ gcc-sp12 --version
gcc (GCC) 12.0.0 20210627 (experimental)
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

--------------------------------

$ gcc-sp12 test.c 
test.c: In function ‘main’:
test.c:13:3: sorry, unimplemented: passing too large argument on stack
   13 |   foo(a);
      |   ^~~~~~
during RTL pass: expand
test.c:13:3: internal compiler error: in expand_call, at calls.c:4986
0x6a0164 expand_call(tree_node*, rtx_def*, int)
	../../gcc-12-20210627/gcc/calls.c:4986
0xafcb9e expand_expr_real_1(tree_node*, rtx_def*, machine_mode, expand_modifier, rtx_def**, bool)
	../../gcc-12-20210627/gcc/expr.c:11442
0x9d7b3b expand_expr
	../../gcc-12-20210627/gcc/expr.h:301
0x9d7b3b expand_call_stmt
	../../gcc-12-20210627/gcc/cfgexpand.c:2846
0x9d7b3b expand_gimple_stmt_1
	../../gcc-12-20210627/gcc/cfgexpand.c:3877
0x9d7b3b expand_gimple_stmt
	../../gcc-12-20210627/gcc/cfgexpand.c:4041
0x9dd8c3 expand_gimple_basic_block
	../../gcc-12-20210627/gcc/cfgexpand.c:6083
0x9df677 execute
	../../gcc-12-20210627/gcc/cfgexpand.c:6809
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <https://gcc.gnu.org/bugs/> for instructions.

--------------------------------

$ gcc-sp11 --version
gcc (GCC) 11.1.1 20210619
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

--------------------------------

$ gcc-sp11 test.c 
test.c: In function ‘main’:
test.c:13:3: sorry, unimplemented: passing too large argument on stack
   13 |   foo(a);
      |   ^~~~~~
test.c:13: confused by earlier errors, bailing out
Comment 1 Andrew Pinski 2021-07-04 18:12:54 UTC
(In reply to John X from comment #0) 
> $ gcc-sp11 test.c 
> test.c: In function ‘main’:
> test.c:13:3: sorry, unimplemented: passing too large argument on stack
>    13 |   foo(a);
>       |   ^~~~~~
> test.c:13: confused by earlier errors, bailing out


This is ICE just hidden for release checking if there was a sorry/error before hand. So this is not a regression from GCC 11.
Comment 2 Andrew Pinski 2021-07-04 18:21:38 UTC
Dup of bug 100536.

*** This bug has been marked as a duplicate of bug 100536 ***