public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/37756]  New: ICE building object file with -O3 and -combine
@ 2008-10-06 21:24 zlynx at acm dot org
  2008-10-06 21:26 ` [Bug c/37756] " zlynx at acm dot org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: zlynx at acm dot org @ 2008-10-06 21:24 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 886 bytes --]

# gcc *.i -combine -O3 -c -o udns.o
dia-submit/udns_init.c: In function ‘dns_set_srch_internal’:
dia-submit/udns_init.c:47: internal compiler error: in
get_addr_dereference_operands, at tree-ssa-operands.c:1698

Because it only appears to happen when building with multiple input files, I
have attached a tar of .i files that reproduce the problem (the udns async DNS
resolver library actually).

I have observed this ICE on i386 and x86_64 and IA64 builds of GCC 4.3.2.


-- 
           Summary: ICE building object file with -O3 and -combine
           Product: gcc
           Version: 4.3.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: zlynx at acm dot org
  GCC host triplet: i386-redhat-linux


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


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

* [Bug c/37756] ICE building object file with -O3 and -combine
  2008-10-06 21:24 [Bug c/37756] New: ICE building object file with -O3 and -combine zlynx at acm dot org
@ 2008-10-06 21:26 ` zlynx at acm dot org
  2008-10-07  7:40 ` [Bug tree-optimization/37756] " rguenth at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: zlynx at acm dot org @ 2008-10-06 21:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from zlynx at acm dot org  2008-10-06 21:25 -------
Created an attachment (id=16465)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=16465&action=view)
Gzipped Tar of .i files for bug reproduction


-- 


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


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

* [Bug tree-optimization/37756] ICE building object file with -O3 and -combine
  2008-10-06 21:24 [Bug c/37756] New: ICE building object file with -O3 and -combine zlynx at acm dot org
  2008-10-06 21:26 ` [Bug c/37756] " zlynx at acm dot org
@ 2008-10-07  7:40 ` rguenth at gcc dot gnu dot org
  2008-10-07 20:41 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-10-07  7:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from rguenth at gcc dot gnu dot org  2008-10-07 07:38 -------
Unlikely to be fixed.  -combine is an obscure feature.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code


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


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

* [Bug tree-optimization/37756] ICE building object file with -O3 and -combine
  2008-10-06 21:24 [Bug c/37756] New: ICE building object file with -O3 and -combine zlynx at acm dot org
  2008-10-06 21:26 ` [Bug c/37756] " zlynx at acm dot org
  2008-10-07  7:40 ` [Bug tree-optimization/37756] " rguenth at gcc dot gnu dot org
@ 2008-10-07 20:41 ` pinskia at gcc dot gnu dot org
  2008-10-08  0:30 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-10-07 20:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2008-10-07 20:40 -------
(In reply to comment #2)
> Unlikely to be fixed.  -combine is an obscure feature.

Except it might not be a -combine issue :).  Until the bug gets
reduced/analyzed we cannot say it will unlikely be fixed. 


-- 


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


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

* [Bug tree-optimization/37756] ICE building object file with -O3 and -combine
  2008-10-06 21:24 [Bug c/37756] New: ICE building object file with -O3 and -combine zlynx at acm dot org
                   ` (2 preceding siblings ...)
  2008-10-07 20:41 ` pinskia at gcc dot gnu dot org
@ 2008-10-08  0:30 ` pinskia at gcc dot gnu dot org
  2008-10-08  0:55 ` zlynx at acm dot org
  2010-09-17  9:08 ` rguenth at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-10-08  0:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from pinskia at gcc dot gnu dot org  2008-10-08 00:29 -------
Reduced testcase.
FILE 1:
struct dns_ctx {
  int dnsc_serv[6];
  unsigned dnsc_nserv;
};
struct dns_ctx dns_defctx;
int dns_add_serv(int t) {
  struct dns_ctx *ctx = &dns_defctx;
  ctx->dnsc_serv[t] = 0;
}

--- CUT ---
FILE 2:
extern struct dns_ctx dns_defctx;

--- CUT ---
Though I am still figuring out if this is valid code or not really,
dns_defctx's type is incomplete.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-10-08 00:29:07
               date|                            |


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


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

* [Bug tree-optimization/37756] ICE building object file with -O3 and -combine
  2008-10-06 21:24 [Bug c/37756] New: ICE building object file with -O3 and -combine zlynx at acm dot org
                   ` (3 preceding siblings ...)
  2008-10-08  0:30 ` pinskia at gcc dot gnu dot org
@ 2008-10-08  0:55 ` zlynx at acm dot org
  2010-09-17  9:08 ` rguenth at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: zlynx at acm dot org @ 2008-10-08  0:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from zlynx at acm dot org  2008-10-08 00:54 -------
I think you missed some of your explanation.  

Do you mean that it may not be valid to take the address of a global struct
with partial definition? For example in udns_init.c which does not define
dns_defctx, but has this code:

int dns_init(struct dns_ctx *ctx, int do_open) {
  if (!ctx)
    ctx = &dns_defctx;
[...]


-- 


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


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

* [Bug tree-optimization/37756] ICE building object file with -O3 and -combine
  2008-10-06 21:24 [Bug c/37756] New: ICE building object file with -O3 and -combine zlynx at acm dot org
                   ` (4 preceding siblings ...)
  2008-10-08  0:55 ` zlynx at acm dot org
@ 2010-09-17  9:08 ` rguenth at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2010-09-17  9:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from rguenth at gcc dot gnu dot org  2010-09-17 09:06 -------
-combine has been removed from GCC 4.6 in favor of LTO, closing as WONTFIX.


-- 

rguenth at gcc dot gnu dot org changed:

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


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


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

end of thread, other threads:[~2010-09-17  9:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-10-06 21:24 [Bug c/37756] New: ICE building object file with -O3 and -combine zlynx at acm dot org
2008-10-06 21:26 ` [Bug c/37756] " zlynx at acm dot org
2008-10-07  7:40 ` [Bug tree-optimization/37756] " rguenth at gcc dot gnu dot org
2008-10-07 20:41 ` pinskia at gcc dot gnu dot org
2008-10-08  0:30 ` pinskia at gcc dot gnu dot org
2008-10-08  0:55 ` zlynx at acm dot org
2010-09-17  9:08 ` rguenth 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).