mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-04 05:09:47 +08:00
Regression test for current cpplib bug.
Should not fail if you are using cccp. Expect it to fail if you are using cpplib. From-SVN: r26224
This commit is contained in:
parent
a458ad1df8
commit
e8f5c18f1a
18
gcc/testsuite/gcc.dg/990407-1.c
Normal file
18
gcc/testsuite/gcc.dg/990407-1.c
Normal file
@ -0,0 +1,18 @@
|
||||
/* Regression test for a cpplib macro-expansion bug where
|
||||
`@' becomes `@@' when stringified. */
|
||||
|
||||
/* { dg-do run } */
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#define STR(x) #x
|
||||
|
||||
char *a = STR(@foo), *b = "@foo";
|
||||
|
||||
int
|
||||
main(void)
|
||||
{
|
||||
if (strcmp (a, b))
|
||||
abort ();
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user