[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / no-exceptions.cpp
blob47f491e50e8f127f77c5590b0da2571e20e582d7
1 // RUN: %clang_cc1 %std_cxx11- -Wno-dynamic-exception-spec %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
3 void g();
5 // CHECK: define{{.*}} void @_Z1fv() [[NUW:#[0-9]+]]
6 void f() throw (int) {
8 // CHECK-NOT: invoke void @_Z1gv
9 g();
10 // CHECK: call void @_Z1gv()
11 // CHECK: ret void
14 // CHECK: attributes [[NUW]] = { mustprogress noinline nounwind{{.*}} }