public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/26518]  New: ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735
@ 2006-03-01 19:25 marcus at jet dot franken dot de
  2006-03-01 19:26 ` [Bug c/26518] " marcus at jet dot franken dot de
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: marcus at jet dot franken dot de @ 2006-03-01 19:25 UTC (permalink / raw)
  To: gcc-bugs

/home/marcus/projects/gcc/BIN/bin/gcc -c joystick_linux.i -O2 -ftree-vectorize
-msse2  -m32
joystick_linux.i: In function 'joy_polldev':
joystick_linux.i:21877: internal compiler error: tree check: expected ssa_name,
have struct_field_tag in verify_ssa, at tree-ssa.c:735
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.


-- 
           Summary: ICE tree check: expected ssa_name, have struct_field_tag
                    in verify_ssa, at tree-ssa.c:735
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: marcus at jet dot franken dot de
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug c/26518] ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735
  2006-03-01 19:25 [Bug c/26518] New: ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735 marcus at jet dot franken dot de
@ 2006-03-01 19:26 ` marcus at jet dot franken dot de
  2006-03-01 19:31 ` [Bug tree-optimization/26518] " pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: marcus at jet dot franken dot de @ 2006-03-01 19:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from marcus at jet dot franken dot de  2006-03-01 19:26 -------
Created an attachment (id=10949)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10949&action=view)
joystick_linux.i

gcc -m32 -O2 -ftree-vectorize -msse2


-- 


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug tree-optimization/26518] ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735
  2006-03-01 19:25 [Bug c/26518] New: ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735 marcus at jet dot franken dot de
  2006-03-01 19:26 ` [Bug c/26518] " marcus at jet dot franken dot de
@ 2006-03-01 19:31 ` pinskia at gcc dot gnu dot org
  2006-03-01 19:33 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-03-01 19:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from pinskia at gcc dot gnu dot org  2006-03-01 19:31 -------
Reducing.


-- 


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug tree-optimization/26518] ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735
  2006-03-01 19:25 [Bug c/26518] New: ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735 marcus at jet dot franken dot de
  2006-03-01 19:26 ` [Bug c/26518] " marcus at jet dot franken dot de
  2006-03-01 19:31 ` [Bug tree-optimization/26518] " pinskia at gcc dot gnu dot org
@ 2006-03-01 19:33 ` pinskia at gcc dot gnu dot org
  2006-03-02  4:12 ` [Bug tree-optimization/26518] [4.2 Regression] " pinskia at gcc dot gnu dot org
  2006-03-03 18:00 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-03-01 19:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2006-03-01 19:33 -------
This is most likely a dup of bug 26197.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  BugsThisDependsOn|                            |26197


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug tree-optimization/26518] [4.2 Regression] ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735
  2006-03-01 19:25 [Bug c/26518] New: ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735 marcus at jet dot franken dot de
                   ` (2 preceding siblings ...)
  2006-03-01 19:33 ` pinskia at gcc dot gnu dot org
@ 2006-03-02  4:12 ` pinskia at gcc dot gnu dot org
  2006-03-03 18:00 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-03-02  4:12 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from pinskia at gcc dot gnu dot org  2006-03-02 04:12 -------
Reduced testcase:
struct fd_set   {
  char fds_bits[1024];
};
void joy_polldev(char *a)
{
  struct fd_set readfds;
  unsigned int __i;
  for (__i = 0;__i < 1024;++__i)
    readfds.fds_bits[__i] = 0;
  f(&readfds, *a);
}


---
Compile with -O2 -ftree-vectorize -msse2 --param max-aliased-vops=0 to see the
problem.  the --param max-aliased-vops=0 is required, otherwise we don't get
the aliasing groupings.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
  GCC build triplet|i686-pc-linux-gnu           |
   GCC host triplet|i686-pc-linux-gnu           |
 GCC target triplet|i686-pc-linux-gnu           |i686-*-*
   Last reconfirmed|0000-00-00 00:00:00         |2006-03-02 04:12:00
               date|                            |
            Summary|ICE tree check: expected    |[4.2 Regression] ICE tree
                   |ssa_name, have              |check: expected ssa_name,
                   |struct_field_tag in         |have struct_field_tag in
                   |verify_ssa, at tree-        |verify_ssa, at tree-
                   |ssa.c:735                   |ssa.c:735
   Target Milestone|---                         |4.2.0


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug tree-optimization/26518] [4.2 Regression] ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735
  2006-03-01 19:25 [Bug c/26518] New: ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735 marcus at jet dot franken dot de
                   ` (3 preceding siblings ...)
  2006-03-02  4:12 ` [Bug tree-optimization/26518] [4.2 Regression] " pinskia at gcc dot gnu dot org
@ 2006-03-03 18:00 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-03-03 18:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from pinskia at gcc dot gnu dot org  2006-03-03 18:00 -------
Yes this is the same bug as PR 26197.  Closing as a dup.

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


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-03-03 18:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-01 19:25 [Bug c/26518] New: ICE tree check: expected ssa_name, have struct_field_tag in verify_ssa, at tree-ssa.c:735 marcus at jet dot franken dot de
2006-03-01 19:26 ` [Bug c/26518] " marcus at jet dot franken dot de
2006-03-01 19:31 ` [Bug tree-optimization/26518] " pinskia at gcc dot gnu dot org
2006-03-01 19:33 ` pinskia at gcc dot gnu dot org
2006-03-02  4:12 ` [Bug tree-optimization/26518] [4.2 Regression] " pinskia at gcc dot gnu dot org
2006-03-03 18:00 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).