On Tue, 21 May 2019 at 13:03, Paolo Carlini <[email protected]> wrote:
>
> Hi,
>
> also in my back queue a few more location fixes (of course ;) Tested
> x86_64-linux.
>
> Thanks, Paolo.
>
> ////////////////
>
Hi,
I think you incorrectly committed an additional chunk:
diff --git a/gcc/testsuite/g++.dg/cpp0x/decltype-pr66548.C
b/gcc/testsuite/g++.dg/cpp0x/decltype-pr66548.C
index f4b7caa..3f20d15 100644
--- a/gcc/testsuite/g++.dg/cpp0x/decltype-pr66548.C
+++ b/gcc/testsuite/g++.dg/cpp0x/decltype-pr66548.C
@@ -11,7 +11,7 @@ struct Meow {};
void f ()
{
- decltype (Meow.purr ()) d; // { dg-error "expected
primary-expression" "pr89875" { xfail c++98_only } }
+ decltype (Meow.purr ()) d; // { dg-error "expected primary-expression" }
(void)&d;
}
As a result, the test now fails
/gcc/testsuite/g++.dg/cpp0x/decltype-pr66548.C:20:3: error: expected
primary-expression before '__typeof__'
compiler exited with status 1
FAIL: g++.dg/cpp0x/decltype-pr66548.C -std=gnu++98 (test for errors, line 14)
Christophe