Bug 47428 - [4.6 Regression] ICE: tree check: expected ssa_name, have integer_cst in copy_phis_for_bb, at tree-inline.c:1986
Summary: [4.6 Regression] ICE: tree check: expected ssa_name, have integer_cst in copy...
Status: RESOLVED FIXED
Alias: None
Product: gcc
Classification: Unclassified
Component: tree-optimization (show other bugs)
Version: 4.6.0
: P3 normal
Target Milestone: 4.6.0
Assignee: Jakub Jelinek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-01-24 04:19 UTC by John Regehr
Modified: 2011-02-02 17:46 UTC (History)
3 users (show)

See Also:
Host: x86_64-unknown-linux-gnu
Target: x86_64-unknown-linux-gnu
Build: x86_64-unknown-linux-gnu
Known to work:
Known to fail:
Last reconfirmed: 2011-01-24 05:32:15


Attachments
gcc46-pr47428.patch (838 bytes, patch)
2011-01-24 11:13 UTC, Jakub Jelinek
Details | Diff
gcc46-pr47427.patch (1.10 KB, patch)
2011-01-24 14:03 UTC, Jakub Jelinek
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description John Regehr 2011-01-24 04:19:54 UTC
[regehr@gamow tmp444]$ current-gcc -c -O3 small.c

small.c: In function 'foo':
small.c:22:12: internal compiler error: tree check: expected ssa_name, have integer_cst in copy_phis_for_bb, at tree-inline.c:1986
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.

[regehr@gamow tmp444]$ current-gcc -v

Using built-in specs.
COLLECT_GCC=current-gcc
COLLECT_LTO_WRAPPER=/uusoc/exports/scratch/regehr/z/compiler-install/gcc-r169143-install/bin/../libexec/gcc/x86_64-unknown-linux-gnu/4.6.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: ../configure --with-libelf=/usr/local --enable-lto --prefix=/home/regehr/z/compiler-install/gcc-r169143-install --program-prefix=r169143- --enable-languages=c,c++
Thread model: posix
gcc version 4.6.0 20110123 (experimental) (GCC) 

[regehr@gamow tmp444]$ cat small.c


struct S2
{
  int f6;
};

int g_65;

struct S2 g_180;

void func_121 (struct S2 p_122);

int func_56 (int p_58, int p_59)
{
  int i;
  for (i = 0; i < 1; i = 1)
    for (p_59 = 0; p_59 < 1; p_59 = 1);
  return p_59;
}

void foo (void)
{
  func_106 (0);
}

int func_106 (const int p_107, int p_108)
{
  if (func_56 (func_56 (0, p_107), 0))
    return 0;
  else
    func_121 (g_180);
  return 0;
}

void func_121 (struct S2 p_122)
{
  for (0; 1; 0)
    for (; p_122.f6;)
      g_65 = 0 ? : func_56 (0,0);
}
Comment 1 H.J. Lu 2011-01-24 05:32:15 UTC
It is caused by revision 160124:

http://gcc.gnu.org/ml/gcc-cvs/2010-06/msg00036.html
Comment 2 Jakub Jelinek 2011-01-24 09:45:47 UTC
Guess it is related to the implicit declaration of func_106 and too few parameters passed to it.  Looking...
Comment 3 Jakub Jelinek 2011-01-24 11:13:17 UTC
Created attachment 23095 [details]
gcc46-pr47428.patch

Untested fix.
Comment 4 Jakub Jelinek 2011-01-24 14:03:41 UTC
Created attachment 23100 [details]
gcc46-pr47427.patch

Different untested fix.
Comment 5 Richard Biener 2011-01-25 11:09:08 UTC
(In reply to comment #4)
> Created attachment 23100 [details]
> gcc46-pr47427.patch
> 
> Different untested fix.

Looks good.
Comment 6 Jakub Jelinek 2011-01-25 12:01:57 UTC
Author: jakub
Date: Tue Jan 25 12:01:54 2011
New Revision: 169226

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=169226
Log:
	PR tree-optimization/47427
	PR tree-optimization/47428
	* tree-ssa-copyrename.c (copy_rename_partition_coalesce): Don't
	coalesce if the new root var would be TREE_READONLY.

	* gcc.c-torture/compile/pr47427.c: New test.
	* gcc.c-torture/compile/pr47428.c: New test.

Added:
    trunk/gcc/testsuite/gcc.c-torture/compile/pr47427.c
    trunk/gcc/testsuite/gcc.c-torture/compile/pr47428.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-ssa-copyrename.c
Comment 7 Jakub Jelinek 2011-01-25 12:46:46 UTC
Fixed.
Comment 8 Diego Novillo 2011-02-02 17:46:08 UTC
Author: dnovillo
Date: Wed Feb  2 17:46:04 2011
New Revision: 169577

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=169577
Log:
	PR tree-optimization/47427
	PR tree-optimization/47428
	* tree-ssa-copyrename.c (copy_rename_partition_coalesce): Don't
	coalesce if the new root var would be TREE_READONLY.

	* gcc.c-torture/compile/pr47427.c: New test.
	* gcc.c-torture/compile/pr47428.c: New test.

Added:
    branches/google/integration/gcc/testsuite/gcc.c-torture/compile/pr47427.c
    branches/google/integration/gcc/testsuite/gcc.c-torture/compile/pr47428.c
Modified:
    branches/google/integration/gcc/ChangeLog
    branches/google/integration/gcc/testsuite/ChangeLog
    branches/google/integration/gcc/tree-ssa-copyrename.c