This is the mail archive of the gcc-bugs@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]
Other format: [Raw text]

[Bug optimization/9059] unused arrays not optimized away


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-12-17 00:33 -------
Weird:
The testcase:
f()
{
  int a[1024];
}
is not optimized but the testcase is:
f()
{
  int a[1024];
  a[0]=0;
}

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|SUSPENDED                   |NEW
   Last reconfirmed|2003-12-04 09:07:42         |2003-12-17 00:33:25
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9059


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