OSDN Git Service

* gcc.dg/tree-ssa/fre-vce-1.c: Cleanup "fre" tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / cast-pretty-print-1.c
1 /* Test pretty-printing of casts.  Should not depend on whether
2    NOP_EXPR or CONVERT_EXPR is used.  */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
6 int i;
7 void
8 f (void)
9 {
10   ((unsigned int)i)(); /* { dg-error "called object '\\(unsigned int\\)i' is not a function" } */
11   ((char)i)(); /* { dg-error "called object '\\(char\\)i' is not a function" } */
12 }