llvm-project/clang/test/CodeGenCXX/no-exceptions.cpp
Bill Wendling 706469b453 Add more of the command line options as attribute flags.
These can be easily queried by the back-end.

llvm-svn: 176304
2013-02-28 22:49:57 +00:00

15 lines
314 B
C++

// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
void g();
// CHECK: define void @_Z1fv() [[NUW:#[0-9]+]]
void f() throw (int) {
// CHECK-NOT: invoke void @_Z1gv
g();
// CHECK: call void @_Z1gv()
// CHECK: ret void
}
// CHECK: attributes [[NUW]] = { nounwind{{.*}} }