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

int foo(void) {
  return 0;
}