PR c++/84551 - ICE with concepts and -g.

* parser.c (add_debug_begin_stmt): Do nothing in a concept.

From-SVN: r258009
This commit is contained in:
Jason Merrill 2018-02-26 14:04:42 -05:00 committed by Jason Merrill
parent b671df813a
commit 106b15eac3
3 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2018-02-26 Jason Merrill <jason@redhat.com>
PR c++/84551 - ICE with concepts and -g.
* parser.c (add_debug_begin_stmt): Do nothing in a concept.
2018-02-26 Marek Polacek <polacek@redhat.com>
PR c++/84325

View File

@ -10699,6 +10699,9 @@ add_debug_begin_stmt (location_t loc)
{
if (!MAY_HAVE_DEBUG_MARKER_STMTS)
return;
if (DECL_DECLARED_CONCEPT_P (current_function_decl))
/* A concept is never expanded normally. */
return;
tree stmt = build0 (DEBUG_BEGIN_STMT, void_type_node);
SET_EXPR_LOCATION (stmt, loc);

View File

@ -0,0 +1,10 @@
// PR c++/84551
// { dg-options "-g -O -std=c++17 -fconcepts" }
template<typename> concept bool C() { return true; }
template<template<typename T> requires C<T>() class> struct A {};
template<typename> requires true struct B {};
A<B> a;