https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87486
Bug ID: 87486 Summary: [9 regression] gcc.target/powerpc/undef-bool-2.c fails starting with r264335 Product: gcc Version: 9.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: testsuite Assignee: unassigned at gcc dot gnu.org Reporter: seurer at gcc dot gnu.org Target Milestone: --- This revision causes a slight change in the error message produced by this test case which causes it to fail when tested. Before: /home/seurer/gcc/gcc-test/gcc/testsuite/gcc.target/powerpc/undef-bool-2.c:12:1: error: unknown type name 'bool'; did you mean '_Bool'? 12 | bool foo (int x) /* { dg-error "unknown type name 'bool'; did you mean '_Bool'?" } */ | ^~~~ | _Bool After: /home/seurer/gcc/gcc-test2/gcc/testsuite/gcc.target/powerpc/undef-bool-2.c:12:1: error: unknown type name 'bool' 12 | bool foo (int x) /* { dg-error "unknown type name 'bool'; did you mean '_Bool'?" } */ | ^~~~ >From the revision's text it appears this is intentional, right? If so I will update the test case to match the new message.