public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/61688] New: [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc
@ 2014-07-03 14:56 rmansfield at qnx dot com
  2014-07-03 15:12 ` [Bug ipa/61688] " trippels at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: rmansfield at qnx dot com @ 2014-07-03 14:56 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61688

            Bug ID: 61688
           Summary: [4.10 Regression] ICE: tree check: expected
                    record_type or union_type or qual_union_type, have
                    array_type in ipa_binfo_from_known_type_jfunc
           Product: gcc
           Version: 4.10.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rmansfield at qnx dot com

Created attachment 33062
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=33062&action=edit
preprocessed src

$ ./xgcc -B. ~/ice.ii -c -O2
/home/ryan/ice.ii:30:27: warning: inline function 'UBool
icu::UnicodeString::isEmpty() const' used but never defined
        inline UBool       isEmpty (void) const;
                           ^
/home/ryan/ice.ii: In member function 'void
icu::DateIntervalFormat::concatSingleDate2TimeInterval(const UChar*,
std::int32_t, const icu::UnicodeString&, UCalendarDateFields, UErrorCode&)':
/home/ryan/ice.ii:58:15: internal compiler error: tree check: expected
record_type or union_type or qual_union_type, have array_type in
ipa_binfo_from_known_type_jfunc, at ipa-prop.c:555
      void     DateIntervalFormat::concatSingleDate2TimeInterval (const UChar *
format,              int32_t formatLen,              const UnicodeString &     
        datePattern,              UCalendarDateFields              field,      
       UErrorCode & status)     {
               ^
0xd98154 tree_check_failed(tree_node const*, char const*, int, char const*,
...)
    ../../gcc/tree.c:9220
0x9e1327 tree_check3
    ../../gcc/tree.h:2771
0x9e1327 ipa_binfo_from_known_type_jfunc(ipa_jump_func*)
    ../../gcc/ipa-prop.c:555
0x9e1eba ipa_intraprocedural_devirtualization(gimple_statement_base*)
    ../../gcc/ipa-prop.c:2467
0xcb7f8f eliminate_dom_walker::before_dom_children(basic_block_def*)
    ../../gcc/tree-ssa-pre.c:4365
0xfca602 dom_walker::walk(basic_block_def*)
    ../../gcc/domwalk.c:177
0xcb6412 eliminate
    ../../gcc/tree-ssa-pre.c:4493
0xcb6693 execute
    ../../gcc/tree-ssa-pre.c:4910
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.

gcc version 4.10.0 20140702 (experimental) [trunk revision 212230] (GCC)


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

* [Bug ipa/61688] [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc
  2014-07-03 14:56 [Bug tree-optimization/61688] New: [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc rmansfield at qnx dot com
@ 2014-07-03 15:12 ` trippels at gcc dot gnu.org
  2014-07-03 16:59 ` rmansfield at qnx dot com
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: trippels at gcc dot gnu.org @ 2014-07-03 15:12 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61688

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-07-03
                 CC|                            |trippels at gcc dot gnu.org
          Component|tree-optimization           |ipa
   Target Milestone|---                         |4.10.0
     Ever confirmed|0                           |1

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Further reduced:

class UObject
{
public:
  virtual ~UObject ();
};
class A : UObject
{
public:
  A ();
};
void fn1 () { A a[1]; }


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

* [Bug ipa/61688] [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc
  2014-07-03 14:56 [Bug tree-optimization/61688] New: [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc rmansfield at qnx dot com
  2014-07-03 15:12 ` [Bug ipa/61688] " trippels at gcc dot gnu.org
@ 2014-07-03 16:59 ` rmansfield at qnx dot com
  2014-07-03 17:26 ` trippels at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rmansfield at qnx dot com @ 2014-07-03 16:59 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61688

--- Comment #3 from Ryan Mansfield <rmansfield at qnx dot com> ---
FWIW, it started happening for me at rev212222


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

* [Bug ipa/61688] [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc
  2014-07-03 14:56 [Bug tree-optimization/61688] New: [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc rmansfield at qnx dot com
  2014-07-03 15:12 ` [Bug ipa/61688] " trippels at gcc dot gnu.org
  2014-07-03 16:59 ` rmansfield at qnx dot com
@ 2014-07-03 17:26 ` trippels at gcc dot gnu.org
  2014-07-03 21:38 ` jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: trippels at gcc dot gnu.org @ 2014-07-03 17:26 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61688

--- Comment #4 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
(In reply to Ryan Mansfield from comment #3)
> FWIW, it started happening for me at rev212222

Yes, sorry I should have written: git blame points to r198088.
I didn't bisect.


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

* [Bug ipa/61688] [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc
  2014-07-03 14:56 [Bug tree-optimization/61688] New: [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc rmansfield at qnx dot com
                   ` (2 preceding siblings ...)
  2014-07-03 17:26 ` trippels at gcc dot gnu.org
@ 2014-07-03 21:38 ` jakub at gcc dot gnu.org
  2014-07-07 12:00 ` burnus at gcc dot gnu.org
  2014-09-25 20:19 ` [Bug ipa/61688] [5 " hubicka at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: jakub at gcc dot gnu.org @ 2014-07-03 21:38 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61688

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hubicka at gcc dot gnu.org,
                   |                            |jakub at gcc dot gnu.org

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Indeed, this is Honza's r212222.


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

* [Bug ipa/61688] [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc
  2014-07-03 14:56 [Bug tree-optimization/61688] New: [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc rmansfield at qnx dot com
                   ` (3 preceding siblings ...)
  2014-07-03 21:38 ` jakub at gcc dot gnu.org
@ 2014-07-07 12:00 ` burnus at gcc dot gnu.org
  2014-09-25 20:19 ` [Bug ipa/61688] [5 " hubicka at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: burnus at gcc dot gnu.org @ 2014-07-07 12:00 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61688

--- Comment #6 from Tobias Burnus <burnus at gcc dot gnu.org> ---
I think the PR has been fixed in the meanwhile. My guess is that the fix was
r212304.


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

* [Bug ipa/61688] [5 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc
  2014-07-03 14:56 [Bug tree-optimization/61688] New: [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc rmansfield at qnx dot com
                   ` (4 preceding siblings ...)
  2014-07-07 12:00 ` burnus at gcc dot gnu.org
@ 2014-09-25 20:19 ` hubicka at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: hubicka at gcc dot gnu.org @ 2014-09-25 20:19 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61688

Jan Hubicka <hubicka at gcc dot gnu.org> changed:

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

--- Comment #7 from Jan Hubicka <hubicka at gcc dot gnu.org> ---
Indeed, this one was fixed.


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

end of thread, other threads:[~2014-09-25 20:19 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-03 14:56 [Bug tree-optimization/61688] New: [4.10 Regression] ICE: tree check: expected record_type or union_type or qual_union_type, have array_type in ipa_binfo_from_known_type_jfunc rmansfield at qnx dot com
2014-07-03 15:12 ` [Bug ipa/61688] " trippels at gcc dot gnu.org
2014-07-03 16:59 ` rmansfield at qnx dot com
2014-07-03 17:26 ` trippels at gcc dot gnu.org
2014-07-03 21:38 ` jakub at gcc dot gnu.org
2014-07-07 12:00 ` burnus at gcc dot gnu.org
2014-09-25 20:19 ` [Bug ipa/61688] [5 " hubicka at gcc dot gnu.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).