Fix test RUN line
[oota-llvm.git] / test / FrontendC / 2008-04-08-NoExceptions.c
1 // RUN: %llvmgcc -S -o - %s | grep nounwind | count 2
2 // RUN: %llvmgcc -S -o - %s | not grep {declare.*nounwind}
3
4 void f(void);
5 void g(void) {
6   f();
7 }