public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/33017]  New: tree check fail for legal code
@ 2007-08-07 21:41 dcb314 at hotmail dot com
  2007-08-07 21:43 ` [Bug c/33017] " dcb314 at hotmail dot com
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: dcb314 at hotmail dot com @ 2007-08-07 21:41 UTC (permalink / raw)
  To: gcc-bugs

I just tried to compile Suse Linux package ddiwrapper-0.2-86
with the GNU C compiler version 4.3 snapshot 20070803.

The compiler said

write_msft.c: In function 'ctl2_alloc_string':
write_msft.c:562: internal compiler error: tree check: expected ssa_name, have
symbol_memory_tag in is_old_name, at tree-into-ssa.c:566
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

Preprocessed source attached. Flags -O2   -ftree-vectorize -m32 required.


-- 
           Summary: tree check fail for legal code
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: dcb314 at hotmail dot com
  GCC host triplet: x86_64-suse-linux


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


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

* [Bug c/33017] tree check fail for legal code
  2007-08-07 21:41 [Bug c/33017] New: tree check fail for legal code dcb314 at hotmail dot com
@ 2007-08-07 21:43 ` dcb314 at hotmail dot com
  2007-08-08  9:14 ` [Bug tree-optimization/33017] [4.3 Regression] " pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: dcb314 at hotmail dot com @ 2007-08-07 21:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from dcb314 at hotmail dot com  2007-08-07 21:43 -------
Created an attachment (id=14037)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14037&action=view)
C source code


-- 


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


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

* [Bug tree-optimization/33017] [4.3 Regression] tree check fail for legal code
  2007-08-07 21:41 [Bug c/33017] New: tree check fail for legal code dcb314 at hotmail dot com
  2007-08-07 21:43 ` [Bug c/33017] " dcb314 at hotmail dot com
@ 2007-08-08  9:14 ` pinskia at gcc dot gnu dot org
  2007-08-08  9:18 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-08-08  9:14 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
          Component|c                           |tree-optimization
            Summary|tree check fail for legal   |[4.3 Regression] tree check
                   |code                        |fail for legal code
   Target Milestone|---                         |4.3.0


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


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

* [Bug tree-optimization/33017] [4.3 Regression] tree check fail for legal code
  2007-08-07 21:41 [Bug c/33017] New: tree check fail for legal code dcb314 at hotmail dot com
  2007-08-07 21:43 ` [Bug c/33017] " dcb314 at hotmail dot com
  2007-08-08  9:14 ` [Bug tree-optimization/33017] [4.3 Regression] " pinskia at gcc dot gnu dot org
@ 2007-08-08  9:18 ` pinskia at gcc dot gnu dot org
  2007-08-08 14:35 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-08-08  9:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from pinskia at gcc dot gnu dot org  2007-08-08 09:18 -------
Reducing.


-- 


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


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

* [Bug tree-optimization/33017] [4.3 Regression] tree check fail for legal code
  2007-08-07 21:41 [Bug c/33017] New: tree check fail for legal code dcb314 at hotmail dot com
                   ` (2 preceding siblings ...)
  2007-08-08  9:18 ` pinskia at gcc dot gnu dot org
@ 2007-08-08 14:35 ` pinskia at gcc dot gnu dot org
  2007-08-10  1:01 ` mmitchel at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-08-08 14:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2007-08-08 14:35 -------
Here is a reduced testcase:
int ctl2_encode_string(
 const char *string,
 char **result)
{
    int length;
    static char converted_string[0x104];
    int offset;
    length = strlen(string);
    for(offset = 0; offset < 4; offset++)
      converted_string[length + offset + 2] = 0x57; 
}


-- 


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


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

* [Bug tree-optimization/33017] [4.3 Regression] tree check fail for legal code
  2007-08-07 21:41 [Bug c/33017] New: tree check fail for legal code dcb314 at hotmail dot com
                   ` (3 preceding siblings ...)
  2007-08-08 14:35 ` pinskia at gcc dot gnu dot org
@ 2007-08-10  1:01 ` mmitchel at gcc dot gnu dot org
  2007-09-03 19:35 ` jakub at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-08-10  1:01 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P1


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


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

* [Bug tree-optimization/33017] [4.3 Regression] tree check fail for legal code
  2007-08-07 21:41 [Bug c/33017] New: tree check fail for legal code dcb314 at hotmail dot com
                   ` (4 preceding siblings ...)
  2007-08-10  1:01 ` mmitchel at gcc dot gnu dot org
@ 2007-09-03 19:35 ` jakub at gcc dot gnu dot org
  2007-09-04 23:30 ` jakub at gcc dot gnu dot org
  2007-09-04 23:36 ` jakub at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-09-03 19:35 UTC (permalink / raw)
  To: gcc-bugs



-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |jakub at gcc dot gnu dot org
                   |dot org                     |
                URL|                            |http://gcc.gnu.org/ml/gcc-
                   |                            |patches/2007-
                   |                            |09/msg00155.html
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2007-09-03 19:35:25
               date|                            |


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


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

* [Bug tree-optimization/33017] [4.3 Regression] tree check fail for legal code
  2007-08-07 21:41 [Bug c/33017] New: tree check fail for legal code dcb314 at hotmail dot com
                   ` (5 preceding siblings ...)
  2007-09-03 19:35 ` jakub at gcc dot gnu dot org
@ 2007-09-04 23:30 ` jakub at gcc dot gnu dot org
  2007-09-04 23:36 ` jakub at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-09-04 23:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from jakub at gcc dot gnu dot org  2007-09-04 23:30 -------
Subject: Bug 33017

Author: jakub
Date: Tue Sep  4 23:29:58 2007
New Revision: 128107

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=128107
Log:
        PR tree-optimization/33017
        * tree-data-ref.c (split_constant_offset) <case SSA_NAME>: Don't
        recurse for pure or const function calls.

        * gcc.dg/pr33017.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/pr33017.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-data-ref.c


-- 


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


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

* [Bug tree-optimization/33017] [4.3 Regression] tree check fail for legal code
  2007-08-07 21:41 [Bug c/33017] New: tree check fail for legal code dcb314 at hotmail dot com
                   ` (6 preceding siblings ...)
  2007-09-04 23:30 ` jakub at gcc dot gnu dot org
@ 2007-09-04 23:36 ` jakub at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-09-04 23:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jakub at gcc dot gnu dot org  2007-09-04 23:35 -------
Fixed.


-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


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


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

end of thread, other threads:[~2007-09-04 23:36 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-08-07 21:41 [Bug c/33017] New: tree check fail for legal code dcb314 at hotmail dot com
2007-08-07 21:43 ` [Bug c/33017] " dcb314 at hotmail dot com
2007-08-08  9:14 ` [Bug tree-optimization/33017] [4.3 Regression] " pinskia at gcc dot gnu dot org
2007-08-08  9:18 ` pinskia at gcc dot gnu dot org
2007-08-08 14:35 ` pinskia at gcc dot gnu dot org
2007-08-10  1:01 ` mmitchel at gcc dot gnu dot org
2007-09-03 19:35 ` jakub at gcc dot gnu dot org
2007-09-04 23:30 ` jakub at gcc dot gnu dot org
2007-09-04 23:36 ` jakub 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).