From: Tom Tromey Date: Thu, 1 Nov 2007 23:38:52 +0000 (+0000) Subject: re PR preprocessor/30805 (Internal compiler error when using "x##,##__VA_ARGS__"... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=17bfa461cfeee120e93579877556ecb791e1bfd8;p=gcc.git re PR preprocessor/30805 (Internal compiler error when using "x##,##__VA_ARGS__" in macro) PR preprocessor/30805: * gcc.dg/cpp/pr30805.c: Use -std=gnu89. From-SVN: r129838 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index dc4591b451c..b1c5701bc3f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-11-01 Tom Tromey + + PR preprocessor/30805: + * gcc.dg/cpp/pr30805.c: Use -std=gnu89. + 2007-11-02 Jakub Jelinek PR rtl-optimization/33648 diff --git a/gcc/testsuite/gcc.dg/cpp/pr30805.c b/gcc/testsuite/gcc.dg/cpp/pr30805.c index 4f56a767ac2..bdfce45e33d 100644 --- a/gcc/testsuite/gcc.dg/cpp/pr30805.c +++ b/gcc/testsuite/gcc.dg/cpp/pr30805.c @@ -1,5 +1,6 @@ /* PR preprocessor/30805 - ICE while token pasting. */ /* { dg-do preprocess } */ +/* { dg-options "-std=gnu89" } */ #define A(x,...) x##,##__VA_ARGS__ A(1)