summaryrefslogtreecommitdiff
path: root/test/CodeGen/unwind-attr.c
blob: 86036f94b98138c110c10bcdd01548bb1576b82a (plain)
1
2
3
4
5
6
// RUN: clang-cc -fexceptions -emit-llvm -o - %s | grep "@foo()" | not grep nounwind &&
// RUN: clang-cc -emit-llvm -o - %s | grep "@foo()" | grep nounwind 

int foo(void) {
  return 0;
}