public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/61539] New: ICE: in unify_one_argument, at cp/pt.c:15465 validate(value_store, new_tokens, (T*)0, 0);
@ 2014-06-17 17:36 ilja.j.honkonen at nasa dot gov
  2014-06-17 19:48 ` [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465 trippels at gcc dot gnu.org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: ilja.j.honkonen at nasa dot gov @ 2014-06-17 17:36 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 61539
           Summary: ICE: in unify_one_argument, at cp/pt.c:15465
                    validate(value_store, new_tokens, (T*)0, 0);
           Product: gcc
           Version: 4.8.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ilja.j.honkonen at nasa dot gov

Created attachment 32957
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=32957&action=edit
Compressed eigen.ii (original is 3.9 MB)

Tried to create a custom validator for boost::program_options
(http://www.boost.org/doc/libs/1_55_0/doc/html/program_options/howto.html#idp163429032)
for an Eigen type (http://eigen.tuxfamily.org/dox/classEigen_1_1Matrix.html)
using variadic templates. This seems to work:

namespace Eigen {
    template <
        class Scalar,
        int Rows,
        int Cols,
        int Options,
        int MaxRows,
        int MaxCols
    > void validate(
        boost::any& value,
        const std::vector<std::string>& all_parsed,
        Eigen::Matrix<
            Scalar,
            Rows,
            Cols,
            Options,
            MaxRows,
            MaxCols
        >*,
        long
    ) {
...

but the variadic version causes an ICE:

namespace Eigen {
    template <class... T> void validate(
        boost::any& value,
        const std::vector<std::string>& all_parsed,
        Eigen::Matrix<T...>*,
        long
    ) {
...


Compile command and output:

g++-mp-4.8 -v -save-temps   -I source   -std=c++11 -W -Wall -Wextra -pedantic
-O3      -I /opt/local/include/eigen3   -I /opt/local/include   -L
/opt/local/lib   -lboost_coroutine-mt -lboost_system-mt -lboost_random-mt
-lboost_program_options-mt   tests/program_options/eigen.cpp -o
tests/program_options/eigen.exe
Using built-in specs.
COLLECT_GCC=g++-mp-4.8
COLLECT_LTO_WRAPPER=/opt/local/libexec/gcc/x86_64-apple-darwin13/4.8.2/lto-wrapper
Target: x86_64-apple-darwin13
Configured with:
/opt/local/var/macports/build/_opt_mports_dports_lang_gcc48/gcc48/work/gcc-4.8.2/configure
--prefix=/opt/local --build=x86_64-apple-darwin13
--enable-languages=c,c++,objc,obj-c++,lto,fortran,java
--libdir=/opt/local/lib/gcc48 --includedir=/opt/local/include/gcc48
--infodir=/opt/local/share/info --mandir=/opt/local/share/man
--datarootdir=/opt/local/share/gcc-4.8 --with-local-prefix=/opt/local
--with-system-zlib --disable-nls --program-suffix=-mp-4.8
--with-gxx-include-dir=/opt/local/include/gcc48/c++/ --with-gmp=/opt/local
--with-mpfr=/opt/local --with-mpc=/opt/local --with-cloog=/opt/local
--enable-cloog-backend=isl --disable-cloog-version-check
--enable-stage1-checking --disable-multilib --enable-lto
--enable-libstdcxx-time --with-as=/opt/local/bin/as --with-ld=/opt/local/bin/ld
--with-ar=/opt/local/bin/ar --with-bugurl=https://trac.macports.org/newticket
--with-pkgversion='MacPorts gcc48 4.8.2_0'
Thread model: posix
gcc version 4.8.2 (MacPorts gcc48 4.8.2_0) 
COLLECT_GCC_OPTIONS='-mmacosx-version-min=10.9.2' '-v' '-save-temps' '-I'
'source' '-std=c++11' '-Wall' '-Wextra' '-Wpedantic' '-O3' '-I'
'/opt/local/include/eigen3' '-I' '/opt/local/include' '-L/opt/local/lib' '-o'
'tests/program_options/eigen.exe' '-shared-libgcc' '-mtune=core2'
 /opt/local/libexec/gcc/x86_64-apple-darwin13/4.8.2/cc1plus -E -quiet -v -I
source -I /opt/local/include/eigen3 -I /opt/local/include -D__DYNAMIC__
tests/program_options/eigen.cpp -fPIC -mmacosx-version-min=10.9.2 -mtune=core2
-std=c++11 -Wall -Wextra -Wpedantic -O3 -fpch-preprocess -o eigen.ii
ignoring nonexistent directory
"/opt/local/lib/gcc48/gcc/x86_64-apple-darwin13/4.8.2/../../../../../x86_64-apple-darwin13/include"
ignoring duplicate directory "/opt/local/include"
  as it is a non-system directory that duplicates a system directory
#include "..." search starts here:
#include <...> search starts here:
 source
 /opt/local/include/eigen3
 /opt/local/include/gcc48/c++/
 /opt/local/include/gcc48/c++//x86_64-apple-darwin13
 /opt/local/include/gcc48/c++//backward
 /opt/local/lib/gcc48/gcc/x86_64-apple-darwin13/4.8.2/include
 /opt/local/include
 /opt/local/lib/gcc48/gcc/x86_64-apple-darwin13/4.8.2/include-fixed
 /usr/include
 /System/Library/Frameworks
 /Library/Frameworks
End of search list.
COLLECT_GCC_OPTIONS='-mmacosx-version-min=10.9.2' '-v' '-save-temps' '-I'
'source' '-std=c++11' '-Wall' '-Wextra' '-Wpedantic' '-O3' '-I'
'/opt/local/include/eigen3' '-I' '/opt/local/include' '-L/opt/local/lib' '-o'
'tests/program_options/eigen.exe' '-shared-libgcc' '-mtune=core2'
 /opt/local/libexec/gcc/x86_64-apple-darwin13/4.8.2/cc1plus -fpreprocessed
eigen.ii -fPIC -quiet -dumpbase eigen.cpp -mmacosx-version-min=10.9.2
-mtune=core2 -auxbase eigen -O3 -Wall -Wextra -Wpedantic -std=c++11 -version -o
eigen.s
GNU C++ (MacPorts gcc48 4.8.2_0) version 4.8.2 (x86_64-apple-darwin13)
    compiled by GNU C version 4.8.2, GMP version 5.1.2, MPFR version 3.1.1-p2,
MPC version 1.0.1
warning: MPC header version 1.0.1 differs from library version 1.0.2.
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
GNU C++ (MacPorts gcc48 4.8.2_0) version 4.8.2 (x86_64-apple-darwin13)
    compiled by GNU C version 4.8.2, GMP version 5.1.2, MPFR version 3.1.1-p2,
MPC version 1.0.1
warning: MPC header version 1.0.1 differs from library version 1.0.2.
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 9a460ae1d1b0432ebdeb9525da7c2ac2
In file included from
/opt/local/include/boost/program_options/value_semantic.hpp:418:0,
                 from
/opt/local/include/boost/program_options/options_description.hpp:13,
                 from /opt/local/include/boost/program_options.hpp:15,
                 from tests/program_options/eigen.cpp:38:
/opt/local/include/boost/program_options/detail/value_semantic.hpp: In
instantiation of 'void boost::program_options::typed_value<T,
charT>::xparse(boost::any&, const std::vector<std::basic_string<charT> >&)
const [with T = Eigen::Matrix<double, 3, 1>; charT = char]':
tests/program_options/eigen.cpp:131:1:   required from here
/opt/local/include/boost/program_options/detail/value_semantic.hpp:170:55:
internal compiler error: in unify_one_argument, at cp/pt.c:15465
             validate(value_store, new_tokens, (T*)0, 0);
                                                       ^

/opt/local/include/boost/program_options/detail/value_semantic.hpp:170:55:
internal compiler error: Abort trap: 6
g++-mp-4.8: internal compiler error: Abort trap: 6 (program cc1plus)
Abort trap: 6


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

* [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465
  2014-06-17 17:36 [Bug c++/61539] New: ICE: in unify_one_argument, at cp/pt.c:15465 validate(value_store, new_tokens, (T*)0, 0); ilja.j.honkonen at nasa dot gov
@ 2014-06-17 19:48 ` trippels at gcc dot gnu.org
  2014-06-17 20:46 ` trippels at gcc dot gnu.org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: trippels at gcc dot gnu.org @ 2014-06-17 19:48 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="UTF-8", Size: 10395 bytes --]

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-06-17
                 CC|                            |trippels at gcc dot gnu.org
   Target Milestone|---                         |4.8.5
            Summary|ICE: in unify_one_argument, |[4.8/4.9/4.10 Regression]
                   |at cp/pt.c:15465            |ICE: in unify_one_argument,
                   |validate(value_store,       |at cp/pt.c:15465
                   |new_tokens, (T*)0, 0);      |
     Ever confirmed|0                           |1
      Known to fail|                            |4.10.0, 4.8.3, 4.9.0

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

markus@x4 tmp % cat test.ii
template <typename _CharT> class A;
template <typename> class B;
template <class charT> class C;
template <> class C<char>
{
  virtual void xparse (int &, const B<A<char> > &) const;
};
template <class T, class charT = char> class G : C<charT>
{
public:
  G (void *) {}
  void default_value (const T &);
  void xparse (int &, const B<A<charT> > &) const;
};
template <class T, class charT>
void validate (int &, const B<A<charT> > &, T *, int);
template <class T, class charT>
void G<T, charT>::xparse (int &p1, const B<A<charT> > &p2) const
{
  validate (p1, p2, (T *)0, 0);
}
template <class T> G<T> *value (T *) { G<T> *r = new G<T>(0); }
namespace Eigen
{
template <typename T> struct D;
template <typename, int, int, int = 0 ?: 0, int = 0, int = 0 > class F;
template <typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows,
          int _MaxCols>
struct D<F<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
{
  typedef _Scalar Scalar;
};
template <typename, int, int, int, int, int _MaxCols> class F
{
public:
  typedef typename Eigen::D<F>::Scalar Scalar;
  F (const Scalar &, const Scalar &, const Scalar &);
};
template <class... T>
void validate (int &, const B<A<char> > &, Eigen::F<T...> *);
}
int main (int, char *[])
{
  Eigen::F<double, 3, 1> a (0, 0, 0);
  value (&a)->default_value (Eigen::F<double, 3, 1>(0, 0, 0));
}

markus@x4 tmp % clang++ -w -c -std=c++11 test.ii
markus@x4 tmp % g++ -c -std=c++11 test.ii
test.ii: In substitution of ‘template<class ... T> void Eigen::validate(int&,
const B<A<char> >&, Eigen::F<T ...>*) [with T = <missing>]’:
test.ii:20:30:   required from ‘void G<T, charT>::xparse(int&, const B<A<charT>
>&) const [with T = Eigen::F<double, 3, 1>; charT = char]’
test.ii:46:1:   required from here
test.ii:20:30: internal compiler error: in unify_one_argument, at cp/pt.c:16504
   validate (p1, p2, (T *)0, 0);
                              ^
0x5e66fc unify_one_argument
        ../../gcc/gcc/cp/pt.c:16503
0x5e7562 unify_pack_expansion
        ../../gcc/gcc/cp/pt.c:17322
0x5e5b6b unify
        ../../gcc/gcc/cp/pt.c:18077
0x4fccc7 try_class_unification
        ../../gcc/gcc/cp/pt.c:17084
0x5e2bff unify
        ../../gcc/gcc/cp/pt.c:18105
0x5e2dec unify
        ../../gcc/gcc/cp/pt.c:17973
0x5e64f7 unify_one_argument
        ../../gcc/gcc/cp/pt.c:16509
0x5e894c type_unification_real
        ../../gcc/gcc/cp/pt.c:16581
0x5f2973 fn_type_unification(tree_node*, tree_node*, tree_node*, tree_node*
const*, unsigned int, tree_node*, unification_kind_t, int, bool, bool)
        ../../gcc/gcc/cp/pt.c:16019
0x55e9d1 add_template_candidate_real
        ../../gcc/gcc/cp/call.c:3008
0x55f4ac add_template_candidate
        ../../gcc/gcc/cp/call.c:3105
0x55f4ac add_candidates
        ../../gcc/gcc/cp/call.c:5233
0x561cf9 perform_overload_resolution
        ../../gcc/gcc/cp/call.c:3953
0x56430a build_new_function_call(tree_node*, vec<tree_node*, va_gc,
vl_embed>**, bool, int)
        ../../gcc/gcc/cp/call.c:4030
0x6e1d74 finish_call_expr(tree_node*, vec<tree_node*, va_gc, vl_embed>**, bool,
bool, int)
        ../../gcc/gcc/cp/semantics.c:2365
0x5b7446 tsubst_copy_and_build(tree_node*, tree_node*, int, tree_node*, bool,
bool)
        ../../gcc/gcc/cp/pt.c:14958
0x5c7a4e tsubst_expr
        ../../gcc/gcc/cp/pt.c:14137
0x5c8455 tsubst_expr
        ../../gcc/gcc/cp/pt.c:13563
0x5c8a37 tsubst_expr
        ../../gcc/gcc/cp/pt.c:13735
0x5c55ae instantiate_decl(tree_node*, int, bool)
        ../../gcc/gcc/cp/pt.c:20047
Please submit a full bug report,
>From gcc-bugs-return-454422-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Jun 17 19:52:19 2014
Return-Path: <gcc-bugs-return-454422-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3051 invoked by alias); 17 Jun 2014 19:52:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3026 invoked by uid 48); 17 Jun 2014 19:52:15 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465
Date: Tue, 17 Jun 2014 19:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.8.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61539-4-Ec8QOooSFE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61539-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61539-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-06/txt/msg01504.txt.bz2
Content-length: 1197

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

--- Comment #2 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Another smaller testcase (clang rejects this):

markus@x4 tmp % cat foo.ii
template <class> class A;
template <> class A<char>
{
  virtual void m_fn1 (int &, const int &) const;
};
template <typename, int> class B;
template <class, class = int> class C : A<char>
{
public:
  C (void *) {}
  void m_fn1 (int &, const int &) const;
};
C<B<double, 0> > *a = new C<B<double, 0>>(0);
template <class... T> void validate (B<T...> *);
template <class T, class charT>
void C<T, charT>::m_fn1 (int &, const int &) const
{
  validate ((T *)0);
}

markus@x4 tmp % g++ -c -std=c++11 foo.ii
foo.ii: In substitution of ‘template<class ... T> void validate(B<T ...>*)
[with T = <missing>]’:
foo.ii:18:19:   required from ‘void C< <template-parameter-1-1>,
<template-parameter-1-2> >::m_fn1(int&, const int&) const [with
<template-parameter-1-1> = B<double, 0>; <template-parameter-1-2> = int]’
foo.ii:19:1:   required from here
foo.ii:18:19: internal compiler error: in unify_one_argument, at cp/pt.c:16504

PR60942 looks like a dup.
>From gcc-bugs-return-454423-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Jun 17 19:52:37 2014
Return-Path: <gcc-bugs-return-454423-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4349 invoked by alias); 17 Jun 2014 19:52:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3691 invoked by uid 48); 17 Jun 2014 19:52:30 -0000
From: "rose.garcia-eggl2fk at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/61388] [4.8 Regression] linux/microblaze fails to build: undefined machine-specific constraint at this point: "Q"
Date: Tue, 17 Jun 2014 19:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.8.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rose.garcia-eggl2fk at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.8.4
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61388-4-V5kt8QVfN9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61388-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61388-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-06/txt/msg01505.txt.bz2
Content-length: 899

https://gcc.gnu.org/bugzilla/show_bug.cgi?ida388

--- Comment #5 from Rose Garcia <rose.garcia-eggl2fk at yopmail dot com> ---
(In reply to Michael Eager from comment #3)
> What sources are you building?

GCC 4.8.3 release tarball, as already mentioned.

>
> When I build --target=microblaze-xilinx-elf from the current sources, I see
> the same warning message for microblaze.md that you list.  I do not see the
> other errors.  Constraint "Q" is defined in constraints.md.

others building gcc 4.8.3 reported the same problem.
the problem is that this patch entered the *stable* release series between
4.8.2 and 4.8.3, and apparently depends on changes from the 4.9.x devel branch.


this patch reportedly fixes the problem:
http://www.openadk.org/cgi-bin/gitweb.cgi?p=openadk.git;a=blob;f=toolchain/gcc/patches/4.8.3/miscompile.microblaze;hÕ75054aa9a6b9c6081753289dcfc4b3e47c5af7;hb=HEAD


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

* [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465
  2014-06-17 17:36 [Bug c++/61539] New: ICE: in unify_one_argument, at cp/pt.c:15465 validate(value_store, new_tokens, (T*)0, 0); ilja.j.honkonen at nasa dot gov
  2014-06-17 19:48 ` [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465 trippels at gcc dot gnu.org
@ 2014-06-17 20:46 ` trippels at gcc dot gnu.org
  2014-06-18 13:30 ` trippels at gcc dot gnu.org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: trippels at gcc dot gnu.org @ 2014-06-17 20:46 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|4.8.2                       |4.10.0
   Target Milestone|4.8.5                       |4.8.4


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

* [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465
  2014-06-17 17:36 [Bug c++/61539] New: ICE: in unify_one_argument, at cp/pt.c:15465 validate(value_store, new_tokens, (T*)0, 0); ilja.j.honkonen at nasa dot gov
  2014-06-17 19:48 ` [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465 trippels at gcc dot gnu.org
  2014-06-17 20:46 ` trippels at gcc dot gnu.org
@ 2014-06-18 13:30 ` trippels at gcc dot gnu.org
  2014-06-26 12:51 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: trippels at gcc dot gnu.org @ 2014-06-18 13:30 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason at redhat dot com

--- Comment #3 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Started with r179436.


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

* [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465
  2014-06-17 17:36 [Bug c++/61539] New: ICE: in unify_one_argument, at cp/pt.c:15465 validate(value_store, new_tokens, (T*)0, 0); ilja.j.honkonen at nasa dot gov
                   ` (2 preceding siblings ...)
  2014-06-18 13:30 ` trippels at gcc dot gnu.org
@ 2014-06-26 12:51 ` rguenth at gcc dot gnu.org
  2014-06-30 15:12 ` jason at gcc dot gnu.org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-06-26 12:51 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
           Priority|P3                          |P2


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

* [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465
  2014-06-17 17:36 [Bug c++/61539] New: ICE: in unify_one_argument, at cp/pt.c:15465 validate(value_store, new_tokens, (T*)0, 0); ilja.j.honkonen at nasa dot gov
                   ` (3 preceding siblings ...)
  2014-06-26 12:51 ` rguenth at gcc dot gnu.org
@ 2014-06-30 15:12 ` jason at gcc dot gnu.org
  2014-06-30 15:59 ` jason at gcc dot gnu.org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jason at gcc dot gnu.org @ 2014-06-30 15:12 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Mon Jun 30 15:11:14 2014
New Revision: 212154

URL: https://gcc.gnu.org/viewcvs?rev=212154&root=gcc&view=rev
Log:
    PR c++/61539
    * pt.c (unify_one_argument): Type/expression mismatch just causes
    deduction failure.

Added:
    trunk/gcc/testsuite/g++.dg/cpp0x/variadic160.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/pt.c


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

* [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465
  2014-06-17 17:36 [Bug c++/61539] New: ICE: in unify_one_argument, at cp/pt.c:15465 validate(value_store, new_tokens, (T*)0, 0); ilja.j.honkonen at nasa dot gov
                   ` (4 preceding siblings ...)
  2014-06-30 15:12 ` jason at gcc dot gnu.org
@ 2014-06-30 15:59 ` jason at gcc dot gnu.org
  2014-06-30 16:11 ` jason at gcc dot gnu.org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: jason at gcc dot gnu.org @ 2014-06-30 15:59 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Mon Jun 30 15:58:58 2014
New Revision: 212156

URL: https://gcc.gnu.org/viewcvs?rev=212156&root=gcc&view=rev
Log:
    PR c++/61539
    * pt.c (unify_one_argument): Type/expression mismatch just causes
    deduction failure.

Added:
    branches/gcc-4_9-branch/gcc/testsuite/g++.dg/cpp0x/variadic160.C
Modified:
    branches/gcc-4_9-branch/gcc/cp/ChangeLog
    branches/gcc-4_9-branch/gcc/cp/pt.c


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

* [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465
  2014-06-17 17:36 [Bug c++/61539] New: ICE: in unify_one_argument, at cp/pt.c:15465 validate(value_store, new_tokens, (T*)0, 0); ilja.j.honkonen at nasa dot gov
                   ` (5 preceding siblings ...)
  2014-06-30 15:59 ` jason at gcc dot gnu.org
@ 2014-06-30 16:11 ` jason at gcc dot gnu.org
  2014-06-30 17:31 ` jason at gcc dot gnu.org
  2014-06-30 17:36 ` jason at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: jason at gcc dot gnu.org @ 2014-06-30 16:11 UTC (permalink / raw)
  To: gcc-bugs

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

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |jason at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |jason at gcc dot gnu.org


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

* [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465
  2014-06-17 17:36 [Bug c++/61539] New: ICE: in unify_one_argument, at cp/pt.c:15465 validate(value_store, new_tokens, (T*)0, 0); ilja.j.honkonen at nasa dot gov
                   ` (6 preceding siblings ...)
  2014-06-30 16:11 ` jason at gcc dot gnu.org
@ 2014-06-30 17:31 ` jason at gcc dot gnu.org
  2014-06-30 17:36 ` jason at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: jason at gcc dot gnu.org @ 2014-06-30 17:31 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Mon Jun 30 17:30:22 2014
New Revision: 212161

URL: https://gcc.gnu.org/viewcvs?rev=212161&root=gcc&view=rev
Log:
    PR c++/61539
    * pt.c (unify_one_argument): Type/expression mismatch just causes
    deduction failure.

Added:
    branches/gcc-4_8-branch/gcc/testsuite/g++.dg/cpp0x/variadic160.C
Modified:
    branches/gcc-4_8-branch/gcc/cp/ChangeLog
    branches/gcc-4_8-branch/gcc/cp/pt.c


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

* [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465
  2014-06-17 17:36 [Bug c++/61539] New: ICE: in unify_one_argument, at cp/pt.c:15465 validate(value_store, new_tokens, (T*)0, 0); ilja.j.honkonen at nasa dot gov
                   ` (7 preceding siblings ...)
  2014-06-30 17:31 ` jason at gcc dot gnu.org
@ 2014-06-30 17:36 ` jason at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: jason at gcc dot gnu.org @ 2014-06-30 17:36 UTC (permalink / raw)
  To: gcc-bugs

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

Jason Merrill <jason at gcc dot gnu.org> changed:

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

--- Comment #7 from Jason Merrill <jason at gcc dot gnu.org> ---
Fixed for 4.8.4/4.9.1/trunk


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

end of thread, other threads:[~2014-06-30 17:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-17 17:36 [Bug c++/61539] New: ICE: in unify_one_argument, at cp/pt.c:15465 validate(value_store, new_tokens, (T*)0, 0); ilja.j.honkonen at nasa dot gov
2014-06-17 19:48 ` [Bug c++/61539] [4.8/4.9/4.10 Regression] ICE: in unify_one_argument, at cp/pt.c:15465 trippels at gcc dot gnu.org
2014-06-17 20:46 ` trippels at gcc dot gnu.org
2014-06-18 13:30 ` trippels at gcc dot gnu.org
2014-06-26 12:51 ` rguenth at gcc dot gnu.org
2014-06-30 15:12 ` jason at gcc dot gnu.org
2014-06-30 15:59 ` jason at gcc dot gnu.org
2014-06-30 16:11 ` jason at gcc dot gnu.org
2014-06-30 17:31 ` jason at gcc dot gnu.org
2014-06-30 17:36 ` jason 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).