mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-11 14:11:31 +08:00
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:
parent
b671df813a
commit
106b15eac3
@ -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
|
||||
|
@ -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);
|
||||
|
10
gcc/testsuite/g++.dg/concepts/debug1.C
Normal file
10
gcc/testsuite/g++.dg/concepts/debug1.C
Normal 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;
|
Loading…
x
Reference in New Issue
Block a user