llvm-6502/test/FrontendC/2008-04-08-NoExceptions.c

8 lines
152 B
C
Raw Normal View History

// RUN: %llvmgcc -S -o - %s | grep nounwind | count 2
// RUN: %llvmgcc -S -o - %s | not grep {declare.*nounwind}
void f(void);
void g(void) {
f();
}