summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/unwind-attr.c
blob: 3a11ce620b55fee7919b569b3176794bfd6b0f9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// RUN: %clang_cc1 -triple i386-unknown-unknown -fexceptions -emit-llvm -o - %s | FileCheck %s
// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -o - %s | FileCheck -check-prefix NOEXC %s

int opaque();

// CHECK:       define [[INT:i.*]] @test0() #0 {
// CHECK-NOEXC: define [[INT:i.*]] @test0() #0 {
int test0(void) {
  return opaque();
}

// <rdar://problem/8087431>: locally infer nounwind at -O0
// CHECK:       define [[INT:i.*]] @test1() #1 {
// CHECK-NOEXC: define [[INT:i.*]] @test1() #0 {
int test1(void) {
  return 0;
}

// <rdar://problem/8283071>: not for weak functions
// CHECK:       define weak [[INT:i.*]] @test2() #0 {
// CHECK-NOEXC: define weak [[INT:i.*]] @test2() #0 {
__attribute__((weak)) int test2(void) {
  return 0;
}

// CHECK: attributes #0 = { "target-features"={{.*}} }
// CHECK: attributes #1 = { nounwind "target-features"={{.*}} }

// CHECK-NOEXC: attributes #0 = { nounwind "target-features"={{.*}} }
// CHECK-NOEXC: attributes #1 = { "target-features"={{.*}} }
OpenPOWER on IntegriCloud