public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure
@ 2014-12-03  7:57 trippels at gcc dot gnu.org
  2014-12-03  8:00 ` [Bug ipa/64163] " pinskia at gcc dot gnu.org
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: trippels at gcc dot gnu.org @ 2014-12-03  7:57 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 64163
           Summary: [5 Regression] r218024 causes qt5 build failure
           Product: gcc
           Version: 5.0
               URL: https://sourceware.org/bugzilla/show_bug.cgi?id=17670
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ipa
          Assignee: unassigned at gcc dot gnu.org
          Reporter: trippels at gcc dot gnu.org
                CC: hubicka at gcc dot gnu.org

Using gold on ppc64, qt5 doesn't build because of r218024.
See https://sourceware.org/bugzilla/show_bug.cgi?id=17670 for further
analysis by Alan.

trippels@gcc2-power8 corelib % cat qmimeglobpattern.ii
class G;
class A
{
public:
  A (G);
};
class B
{
public:
  int m_fn1 ();
};
class QString;
struct C
{
  B ref;
};
template <typename> class QList
{
  C d;
public:
  ~QList ();
  void m_fn2 ();
  void m_fn3 ();
};
class G : public QList<QString>
{
};
struct D
{
  void m_fn4 (const QString &&);
  G m_matchingMimeTypes;
};
class F
{
  G m_fn5 (const QString &) const;
};
template <typename T> QList<T>::~QList ()
{
  if (d.ref.m_fn1 ())
    m_fn3 ();
}
template <typename T>
void
QList<T>::m_fn2 ()
{
  QList ();
}
void
D::m_fn4 (const QString &&)
{
  m_matchingMimeTypes.m_fn2 ();
}
G
F::m_fn5 (const QString &) const
{
  G a;
  for (A b (a);;)
    ;
}

trippels@gcc2-power8 corelib % cat qmimeprovider.ii
class A
{
public:
  int m_fn1 ();
};
class QString
{
public:
  static QString m_fn2 (char *);
};
struct B
{
  A ref;
};
template <typename> class QList
{
  B d;
public:
  ~QList ();
  class const_iterator
  {
  };
  const_iterator m_fn3 ();
  void m_fn4 ();
};
class C
{
  QList<QString> c;
  QList<QString>::const_iterator i;
public:
  C (QList<QString>) : i (c.m_fn3 ()) {}
};
class D
{
public:
  enum StandardLocation
  {
    GenericDataLocation
  };
  static QList<QString> m_fn5 (StandardLocation, QString);
};
QList<QString> a = D::m_fn5 (D::GenericDataLocation, QString::m_fn2 (""));
template <typename T> QList<T>::~QList ()
{
  if (d.ref.m_fn1 ())
    m_fn4 ();
}
void
fn1 ()
{
  C b (a);
}

trippels@gcc2-power8 corelib % g++ -shared -w -O3 -fvisibility=hidden
-std=c++0x qmimeglobpattern.ii qmimeprovider.ii
/home/trippels/bin/ld: internal error in symval_for_branch, at powerpc.cc:6755


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
@ 2014-12-03  8:00 ` pinskia at gcc dot gnu.org
  2014-12-03  8:03 ` jakub at gcc dot gnu.org
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu.org @ 2014-12-03  8:00 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This reduced testcase is undefined C++ because of One definition rule
violation.


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
  2014-12-03  8:00 ` [Bug ipa/64163] " pinskia at gcc dot gnu.org
@ 2014-12-03  8:03 ` jakub at gcc dot gnu.org
  2014-12-03  8:11 ` trippels at gcc dot gnu.org
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu.org @ 2014-12-03  8:03 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
And the linker shouldn't crash on any input...


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
  2014-12-03  8:00 ` [Bug ipa/64163] " pinskia at gcc dot gnu.org
  2014-12-03  8:03 ` jakub at gcc dot gnu.org
@ 2014-12-03  8:11 ` trippels at gcc dot gnu.org
  2014-12-03  8:46 ` trippels at gcc dot gnu.org
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: trippels at gcc dot gnu.org @ 2014-12-03  8:11 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Created attachment 34177
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=34177&action=edit
unreduced testcase (without ODR violation)


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2014-12-03  8:11 ` trippels at gcc dot gnu.org
@ 2014-12-03  8:46 ` trippels at gcc dot gnu.org
  2014-12-03 10:06 ` rguenth at gcc dot gnu.org
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: trippels at gcc dot gnu.org @ 2014-12-03  8:46 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
With the unreduced testcase this issue also happens on x86_64 with gold:

markus@x4 /tmp % g++ -w -shared -fPIC -O2 -fvisibility=hidden -std=c++0x
qmimeglobpattern.ii qmimeprovider.ii
markus@x4 /tmp % g++ -w -shared -fPIC -O3 -fvisibility=hidden -std=c++0x
qmimeglobpattern.ii qmimeprovider.ii
/usr/bin/ld: error: /tmp/ccpdsACp.o: requires dynamic R_X86_64_PC32 reloc
against '_ZN5QListI7QStringED1Ev' which may overflow at runtime; recompile with
-fPIC
/tmp/ccpdsACp.o:qmimeprovider.cpp:function QMimeXMLProvider::ensureLoaded():
warning: relocation refers to discarded section
/tmp/ccpdsACp.o:qmimeprovider.cpp:function
QMimeXMLProvider::listAliases(QString const&): warning: relocation refers to
discarded section
/tmp/ccpdsACp.o:qmimeprovider.cpp:function
QMimeXMLProvider::listAliases(QString const&): warning: relocation refers to
discarded section
/tmp/ccpdsACp.o:qmimeprovider.cpp:function QMimeBinaryProvider::checkCache():
warning: relocation refers to discarded section
/tmp/ccpdsACp.o:qmimeprovider.cpp:function
QMimeBinaryProvider::loadMimeTypePrivate(QMimeTypePrivate&): warning:
relocation refers to discarded section
/tmp/ccpdsACp.o:qmimeprovider.cpp:function
QMimeBinaryProvider::loadMimeTypePrivate(QMimeTypePrivate&): warning:
relocation refers to discarded section
/tmp/ccpdsACp.o:qmimeprovider.cpp:function
QMimeBinaryProvider::loadMimeTypePrivate(QMimeTypePrivate&): warning:
relocation refers to discarded section
collect2: error: ld returned 1 exit status

(ld.bfd is fine:)

markus@x4 /tmp % g++ -w -shared -fPIC -O3 -fvisibility=hidden -std=c++0x
qmimeglobpattern.ii qmimeprovider.ii
markus@x4 /tmp %


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2014-12-03  8:46 ` trippels at gcc dot gnu.org
@ 2014-12-03 10:06 ` rguenth at gcc dot gnu.org
  2014-12-03 16:59 ` trippels at gcc dot gnu.org
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-12-03 10:06 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |5.0


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2014-12-03 10:06 ` rguenth at gcc dot gnu.org
@ 2014-12-03 16:59 ` trippels at gcc dot gnu.org
  2014-12-03 22:18 ` amodra at gmail dot com
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: trippels at gcc dot gnu.org @ 2014-12-03 16:59 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Honza, this might well be another gold bug (on x86_64).

With Alan's gold fix the unreduced testcase now compiles fine on ppc64
(with a few "relocation refers to discarded section" warnings).


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2014-12-03 16:59 ` trippels at gcc dot gnu.org
@ 2014-12-03 22:18 ` amodra at gmail dot com
  2014-12-04  7:17 ` trippels at gcc dot gnu.org
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: amodra at gmail dot com @ 2014-12-03 22:18 UTC (permalink / raw)
  To: gcc-bugs

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

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |amodra at gmail dot com

--- Comment #6 from Alan Modra <amodra at gmail dot com> ---
No, this is not a gold bug on x86_64.  ld.bfd may link without complaint, but
the resulting shared library will crash, I think.  There are calls to
_ZN5QListI7QStringED1Ev which resolve to 0 (ie. the ELF header in the shared
lib).

This seems to be a fairly recent bug.  On x86_64, 20141126 and 20141203
miscompile the unreduced testcase while 20141111 looks to be OK.  You can
easily see whether there is a problme by running

nm *.o | grep _ZN5QListI7QStringED
0000000000000000 W _ZN5QListI7QStringED2Ev
0000000000000000 n _ZN5QListI7QStringED5Ev
0000000000000000 W _ZN5QListI7QStringED1Ev
0000000000000000 W _ZN5QListI7QStringED2Ev
0000000000000000 n _ZN5QListI7QStringED5Ev

If as above you see only one copy of _ZN5QListI7QStringED1Ev, then only one of
the two comdat groups define that symbol.


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2014-12-03 22:18 ` amodra at gmail dot com
@ 2014-12-04  7:17 ` trippels at gcc dot gnu.org
  2014-12-04 19:33 ` hjl.tools at gmail dot com
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: trippels at gcc dot gnu.org @ 2014-12-04  7:17 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Here is another reduced testcase. This time hopefully without and ODR issues.

 % cat qmimeglobpattern.ii
class A
{
public:
  bool deref ();
};
class QString;
struct B
{
  A ref;
};
template <typename> class QList
{
  B d;
public:
  ~QList ();
  class const_iterator
  {
  };
  const_iterator constBegin ();
  void clear ();
  void dealloc ();
};
template <typename T> QList<T>::~QList ()
{
  if (d.ref.deref ())
    dealloc ();
}
template <typename T>
void
QList<T>::clear ()
{
  QList ();
}
class A1 : public QList<QString>
{
};
class B1
{
public:
  B1 (A1);
};
struct F
{
  void addMatch (const QString &&);
  A1 m_matchingMimeTypes;
};
class G
{
  A1 matchingGlobs (const QString &) const;
};
void
F::addMatch (const QString &&)
{
  m_matchingMimeTypes.clear ();
}
A1
G::matchingGlobs (const QString &) const
{
  A1 a;
  for (B1 b (a);;)
    ;
}

 % cat qmimeprovider.ii
class A
{
public:
  bool deref ();
};
class QString;
struct B
{
  A ref;
};
template <typename> class QList
{
  B d;
public:
  ~QList ();
  class const_iterator
  {
  };
  const_iterator constBegin ();
  void clear ();
  void dealloc ();
};

class C
{
  QList<QString> c;
  QList<QString>::const_iterator i;

public:
  C (QList<QString>) : i (c.constBegin ()) {}
};
template <typename T> QList<T>::~QList ()
{
  if (d.ref.deref ())
    dealloc ();
}

void
fn1 ()
{
  QList<QString> a;
  C b (a);
}

 % g++ -fuse-ld=bfd -shared -fPIC -O3 -fvisibility=hidden -std=c++0x
qmimeglobpattern.ii qmimeprovider.ii
 % g++ -fuse-ld=gold -shared -fPIC -O3 -fvisibility=hidden -std=c++0x
qmimeglobpattern.ii qmimeprovider.ii
/usr/bin/ld.gold: error: /tmp/ccRfiSrB.o: requires dynamic R_X86_64_PC32 reloc
against '_ZN5QListI7QStringED1Ev' which may overflow at runtime; recompile with
-fPIC
/tmp/ccRfiSrB.o:qmimeprovider.ii:function fn1(): warning: relocation refers to
discarded section
/tmp/ccRfiSrB.o:qmimeprovider.ii:function fn1(): warning: relocation refers to
discarded section
/tmp/ccRfiSrB.o:qmimeprovider.ii:function fn1(): warning: relocation refers to
discarded section
collect2: error: ld returned 1 exit status


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2014-12-04  7:17 ` trippels at gcc dot gnu.org
@ 2014-12-04 19:33 ` hjl.tools at gmail dot com
  2014-12-11 11:45 ` rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: hjl.tools at gmail dot com @ 2014-12-04 19:33 UTC (permalink / raw)
  To: gcc-bugs

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

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-12-04
     Ever confirmed|0                           |1

--- Comment #8 from H.J. Lu <hjl.tools at gmail dot com> ---
(In reply to Markus Trippelsdorf from comment #7)
> Here is another reduced testcase. This time hopefully without and ODR issues.
> 
>  % cat qmimeglobpattern.ii
> class A
> {
> public:
>   bool deref ();
> };
> class QString;
> struct B
> {
>   A ref;
> };
> template <typename> class QList
> {
>   B d;
> public:
>   ~QList ();
>   class const_iterator
>   {
>   };
>   const_iterator constBegin ();
>   void clear ();
>   void dealloc ();
> };
> template <typename T> QList<T>::~QList ()
> {
>   if (d.ref.deref ())
>     dealloc ();
> }
> template <typename T>
> void
> QList<T>::clear ()
> {
>   QList ();
> }
> class A1 : public QList<QString>
> {
> };
> class B1
> {
> public:
>   B1 (A1);
> };
> struct F
> {
>   void addMatch (const QString &&);
>   A1 m_matchingMimeTypes;
> };
> class G
> {
>   A1 matchingGlobs (const QString &) const;
> };
> void
> F::addMatch (const QString &&)
> {
>   m_matchingMimeTypes.clear ();
> }
> A1
> G::matchingGlobs (const QString &) const
> {
>   A1 a;
>   for (B1 b (a);;)
>     ;
> }
> 
>  % cat qmimeprovider.ii
> class A
> {
> public:
>   bool deref ();
> };
> class QString;
> struct B
> {
>   A ref;
> };
> template <typename> class QList
> {
>   B d;
> public:
>   ~QList ();
>   class const_iterator
>   {
>   };
>   const_iterator constBegin ();
>   void clear ();
>   void dealloc ();
> };
> 
> class C
> {
>   QList<QString> c;
>   QList<QString>::const_iterator i;
> 
> public:
>   C (QList<QString>) : i (c.constBegin ()) {}
> };
> template <typename T> QList<T>::~QList ()
> {
>   if (d.ref.deref ())
>     dealloc ();
> }
> 
> void
> fn1 ()
> {
>   QList<QString> a;
>   C b (a);
> }
> 
>  % g++ -fuse-ld=bfd -shared -fPIC -O3 -fvisibility=hidden -std=c++0x
> qmimeglobpattern.ii qmimeprovider.ii
>  % g++ -fuse-ld=gold -shared -fPIC -O3 -fvisibility=hidden -std=c++0x
> qmimeglobpattern.ii qmimeprovider.ii
> /usr/bin/ld.gold: error: /tmp/ccRfiSrB.o: requires dynamic R_X86_64_PC32
> reloc against '_ZN5QListI7QStringED1Ev' which may overflow at runtime;
> recompile with -fPIC
> /tmp/ccRfiSrB.o:qmimeprovider.ii:function fn1(): warning: relocation refers
> to discarded section
> /tmp/ccRfiSrB.o:qmimeprovider.ii:function fn1(): warning: relocation refers
> to discarded section
> /tmp/ccRfiSrB.o:qmimeprovider.ii:function fn1(): warning: relocation refers
> to discarded section
> collect2: error: ld returned 1 exit status

This is caused by r218024.


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2014-12-04 19:33 ` hjl.tools at gmail dot com
@ 2014-12-11 11:45 ` rguenth at gcc dot gnu.org
  2015-01-16  4:59 ` hubicka at gcc dot gnu.org
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-12-11 11:45 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
           Priority|P3                          |P1


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2014-12-11 11:45 ` rguenth at gcc dot gnu.org
@ 2015-01-16  4:59 ` hubicka at gcc dot gnu.org
  2015-01-16 11:13 ` trippels at gcc dot gnu.org
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: hubicka at gcc dot gnu.org @ 2015-01-16  4:59 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING

--- Comment #9 from Jan Hubicka <hubicka at gcc dot gnu.org> ---
this ought to be fixed now (dup pf the profiledbootstrap and chromium issue)


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
                   ` (10 preceding siblings ...)
  2015-01-16  4:59 ` hubicka at gcc dot gnu.org
@ 2015-01-16 11:13 ` trippels at gcc dot gnu.org
  2015-01-16 11:23 ` trippels at gcc dot gnu.org
  2015-01-18  9:52 ` trippels at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: trippels at gcc dot gnu.org @ 2015-01-16 11:13 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #10 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Author: trippels
Date: Fri Jan 16 11:12:52 2015
New Revision: 219721

URL: https://gcc.gnu.org/viewcvs?rev=219721&root=gcc&view=rev
Log:
g++.dg/ipa/pr64612.C: New test.

2015-01-16  Markus Trippelsdorf  <markus@trippelsdorf.de>

    PR ipa/64163
    PR ipa/64612
    * g++.dg/ipa/pr64612.C: New test.

Added:
    trunk/gcc/testsuite/g++.dg/ipa/pr64612.C
Modified:
    trunk/gcc/testsuite/ChangeLog


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
                   ` (11 preceding siblings ...)
  2015-01-16 11:13 ` trippels at gcc dot gnu.org
@ 2015-01-16 11:23 ` trippels at gcc dot gnu.org
  2015-01-18  9:52 ` trippels at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: trippels at gcc dot gnu.org @ 2015-01-16 11:23 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #11 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---


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


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

* [Bug ipa/64163] [5 Regression] r218024 causes qt5 build failure
  2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
                   ` (12 preceding siblings ...)
  2015-01-16 11:23 ` trippels at gcc dot gnu.org
@ 2015-01-18  9:52 ` trippels at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: trippels at gcc dot gnu.org @ 2015-01-18  9:52 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |thiago at kde dot org

--- Comment #12 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
*** Bug 64653 has been marked as a duplicate of this bug. ***


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

end of thread, other threads:[~2015-01-18  9:52 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-03  7:57 [Bug ipa/64163] New: [5 Regression] r218024 causes qt5 build failure trippels at gcc dot gnu.org
2014-12-03  8:00 ` [Bug ipa/64163] " pinskia at gcc dot gnu.org
2014-12-03  8:03 ` jakub at gcc dot gnu.org
2014-12-03  8:11 ` trippels at gcc dot gnu.org
2014-12-03  8:46 ` trippels at gcc dot gnu.org
2014-12-03 10:06 ` rguenth at gcc dot gnu.org
2014-12-03 16:59 ` trippels at gcc dot gnu.org
2014-12-03 22:18 ` amodra at gmail dot com
2014-12-04  7:17 ` trippels at gcc dot gnu.org
2014-12-04 19:33 ` hjl.tools at gmail dot com
2014-12-11 11:45 ` rguenth at gcc dot gnu.org
2015-01-16  4:59 ` hubicka at gcc dot gnu.org
2015-01-16 11:13 ` trippels at gcc dot gnu.org
2015-01-16 11:23 ` trippels at gcc dot gnu.org
2015-01-18  9:52 ` trippels 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).