summaryrefslogtreecommitdiff
path: root/test/FrontendC/2008-04-08-NoExceptions.c
blob: 257fee23b068e15188a30aad124a01a83817638b (plain)
1
2
3
4
5
6
7
// 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();
}