Merge from the pain train
[official-gcc.git] / gcc / testsuite / gcc.dg / charset / asm2.c
bloba9a9c011b2b0f78778a3984321851a099e28a1a9
1 /* Test for execution character set encoding errors.
2 If we ever get a good way to test error recovery
3 the string "foobar" should be translated. */
4 /* { dg-do compile } */
5 /* { dg-require-iconv "IBM1047" } */
6 asm (not_a_string); /* { dg-error "(parse error|syntax error|expected string literal) before" "not_a_string" } */
7 char x[] = "foobar";
9 void foo (void)
11 char *y;
12 asm (not_a_string2); /* { dg-error "(parse error|syntax error|expected string literal) before" "not_a_string" } */
14 #define FOO "walrus"
15 y = FOO;