This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / gcc.dg / charset / asm2.c
blobbfca86c8e96d57c0203d80c04e3e7ad540d99a66
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 "IBM-1047" } */
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;