// 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(); } // : locally infer nounwind at -O0 // CHECK: define [[INT:i.*]] @test1() #1 { // CHECK-NOEXC: define [[INT:i.*]] @test1() #0 { int test1(void) { return 0; } // : 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"={{.*}} }