diff mbox series

[pushed] c++: Remove dg-ice in constexpr-52830.C [PR52830]

Message ID 20201215233920.1240686-1-polacek@redhat.com
State New
Headers show
Series [pushed] c++: Remove dg-ice in constexpr-52830.C [PR52830] | expand

Commit Message

Marek Polacek Dec. 15, 2020, 11:39 p.m. UTC
It turned out that r11-5942 fixed this old PR, and it was detected
by one of the few dg-ice tests -- exactly the point of them!  Now
the PR won't be opened until someone notices that it'd been fixed.
The patch failed to remove the dg-ice though, so now it XPASSes.  Fixing
this now.

Tested x86_64-pc-linux-gnu, applying to trunk.

gcc/testsuite/ChangeLog:

	* g++.dg/cpp0x/constexpr-52830.C: Remove dg-ice.
---
 gcc/testsuite/g++.dg/cpp0x/constexpr-52830.C | 1 -
 1 file changed, 1 deletion(-)


base-commit: 65eac818dbc4d307ed109b71e9f737da7eae64e5
diff mbox series

Patch

diff --git a/gcc/testsuite/g++.dg/cpp0x/constexpr-52830.C b/gcc/testsuite/g++.dg/cpp0x/constexpr-52830.C
index 2c9d2f9b329..04f039fac43 100644
--- a/gcc/testsuite/g++.dg/cpp0x/constexpr-52830.C
+++ b/gcc/testsuite/g++.dg/cpp0x/constexpr-52830.C
@@ -1,6 +1,5 @@ 
 // PR c++/52830
 // { dg-do compile { target c++11 } }
-// { dg-ice "comptypes" }
 
 template<bool b> struct eif { typedef void type; };
 template<>       struct eif<false> {};