e8f5c18f1a
Should not fail if you are using cccp. Expect it to fail if you are using cpplib. From-SVN: r26224
19 lines
263 B
C
19 lines
263 B
C
/* 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;
|
|
}
|