public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/32277]  New: [4.3 Regression]  g++ failures
@ 2007-06-10 16:51 hjl at lucon dot org
  2007-06-19 21:12 ` [Bug target/32277] indir-call-prof fails on ia64-linux-gnu sje at cup dot hp dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: hjl at lucon dot org @ 2007-06-10 16:51 UTC (permalink / raw)
  To: gcc-bugs

FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct
call.* AA transformation on insn
FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct
call.* AA transformation on insn


-- 
           Summary: [4.3 Regression]  g++ failures
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: hjl at lucon dot org


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


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

* [Bug target/32277] indir-call-prof fails on ia64-linux-gnu
  2007-06-10 16:51 [Bug target/32277] New: [4.3 Regression] g++ failures hjl at lucon dot org
@ 2007-06-19 21:12 ` sje at cup dot hp dot com
  2008-10-08 23:01 ` schwab at suse dot de
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: sje at cup dot hp dot com @ 2007-06-19 21:12 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from sje at cup dot hp dot com  2007-06-19 21:12 -------
I proposed XFAIL'ing the test at one point but that patch was not accepted.

See http://gcc.gnu.org/ml/gcc-patches/2007-01/msg02016.html

I get the same failure on IA64 HP-UX.


-- 

sje at cup dot hp dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sje at cup dot hp dot com
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2007-06-19 21:12:30
               date|                            |


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


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

* [Bug target/32277] indir-call-prof fails on ia64-linux-gnu
  2007-06-10 16:51 [Bug target/32277] New: [4.3 Regression] g++ failures hjl at lucon dot org
  2007-06-19 21:12 ` [Bug target/32277] indir-call-prof fails on ia64-linux-gnu sje at cup dot hp dot com
@ 2008-10-08 23:01 ` schwab at suse dot de
  2008-10-29 19:46 ` sje at gcc dot gnu dot org
  2008-10-29 19:49 ` sje at cup dot hp dot com
  3 siblings, 0 replies; 5+ messages in thread
From: schwab at suse dot de @ 2008-10-08 23:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from schwab at suse dot de  2008-10-08 22:59 -------
This patch works for me:

Index: libgcov.c
===================================================================
--- libgcov.c   (revision 140731)
+++ libgcov.c   (working copy)
@@ -777,7 +777,11 @@ void
 __gcov_indirect_call_profiler (gcov_type* counter, gcov_type value, 
                               void* cur_func, void* callee_func)
 {
+#ifdef __ia64__
+  if (callee_func && *(void **) cur_func == *(void **) callee_func)
+#else
   if (cur_func == callee_func)
+#endif
     __gcov_one_value_profiler_body (counter, value);
 }
 #endif


-- 

schwab at suse dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |schwab at suse dot de


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


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

* [Bug target/32277] indir-call-prof fails on ia64-linux-gnu
  2007-06-10 16:51 [Bug target/32277] New: [4.3 Regression] g++ failures hjl at lucon dot org
  2007-06-19 21:12 ` [Bug target/32277] indir-call-prof fails on ia64-linux-gnu sje at cup dot hp dot com
  2008-10-08 23:01 ` schwab at suse dot de
@ 2008-10-29 19:46 ` sje at gcc dot gnu dot org
  2008-10-29 19:49 ` sje at cup dot hp dot com
  3 siblings, 0 replies; 5+ messages in thread
From: sje at gcc dot gnu dot org @ 2008-10-29 19:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from sje at gcc dot gnu dot org  2008-10-29 19:46 -------
Subject: Bug 32277

Author: sje
Date: Wed Oct 29 19:46:16 2008
New Revision: 141442

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=141442
Log:
        PR target/32277
        * libgcov.c ( __gcov_indirect_call_profiler): Check
        TARGET_VTABLE_USES_DESCRIPTORS.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/libgcov.c


-- 


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


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

* [Bug target/32277] indir-call-prof fails on ia64-linux-gnu
  2007-06-10 16:51 [Bug target/32277] New: [4.3 Regression] g++ failures hjl at lucon dot org
                   ` (2 preceding siblings ...)
  2008-10-29 19:46 ` sje at gcc dot gnu dot org
@ 2008-10-29 19:49 ` sje at cup dot hp dot com
  3 siblings, 0 replies; 5+ messages in thread
From: sje at cup dot hp dot com @ 2008-10-29 19:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from sje at cup dot hp dot com  2008-10-29 19:49 -------
Fixed with patch to libgcov.c


-- 

sje at cup dot hp dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.4.0


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


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

end of thread, other threads:[~2008-10-29 19:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-06-10 16:51 [Bug target/32277] New: [4.3 Regression] g++ failures hjl at lucon dot org
2007-06-19 21:12 ` [Bug target/32277] indir-call-prof fails on ia64-linux-gnu sje at cup dot hp dot com
2008-10-08 23:01 ` schwab at suse dot de
2008-10-29 19:46 ` sje at gcc dot gnu dot org
2008-10-29 19:49 ` sje at cup dot hp dot com

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).