Bug 15116 - [tree-ssa] ICE in create_tmp_var_for with nested functions
Summary: [tree-ssa] ICE in create_tmp_var_for with nested functions
Status: RESOLVED DUPLICATE of bug 15117
Alias: None
Product: gcc
Classification: Unclassified
Component: middle-end (show other bugs)
Version: tree-ssa
: P2 normal
Target Milestone: tree-ssa
Assignee: Not yet assigned to anyone
URL:
Keywords: ice-on-valid-code
Depends on:
Blocks:
 
Reported: 2004-04-24 14:54 UTC by Paul Brook
Modified: 2005-07-23 22:49 UTC (History)
1 user (show)

See Also:
Host: i686-pc-linux-gnu
Target: i686-pc-linux-gnu
Build: i686-pc-linux-gnu
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 Paul Brook 2004-04-24 14:54:21 UTC
The following code cuses an ICE in create_tmp_var_for, at tree-nested.c:139 
 
This is a C version of compile/contained_2.f90 
 
void foo () 
{ 
  int a[10]; 
  void bar() 
    { 
      a[0] = 0; 
    } 
}
Comment 1 Andrew Pinski 2004-04-24 14:58:11 UTC
This is a dup of bug 15117 (with a typo fixed).

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