diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/pch/counter-2.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/pch/counter-2.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/pch/counter-2.c b/gcc/testsuite/gcc.dg/pch/counter-2.c new file mode 100644 index 000000000..14ce24909 --- /dev/null +++ b/gcc/testsuite/gcc.dg/pch/counter-2.c @@ -0,0 +1,18 @@ +/* Copyright (C) 2007 Free Software Foundation + Contributed by Ollie Wild <aaw@google.com> */ + +/* { dg-options "-I. -Winvalid-pch" } */ + +#if __COUNTER__ != 0 +#error __COUNTER__ != 0 +#endif + +#include "counter-2.h" /* { dg-warning "not used because `__COUNTER__' is invalid" } */ +/* { dg-error "counter-2.h: No such file or directory" "no such file" { target *-*-* } 0 } */ +/* { dg-error "one or more PCH files were found, but they were invalid" "invalid files" { target *-*-* } 10 } */ +/* { dg-message "terminated" "" { target *-*-* } 0 } */ + +int main(void) +{ + return __COUNTER__; +} |