Files
clang-p2996/clang/test/CodeGenCXX/no-exceptions.cpp
Nikita Popov ff8b1b1b9c Reapply [IR] Don't mark mustprogress as type attribute
Reapply with fixes for clang tests.

-----

This is a simple enum attribute. Test changes are because enum
attributes are sorted before type attributes, so mustprogress is
now in a different position.
2021-07-09 20:57:44 +02:00

15 lines
342 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]] = { mustprogress noinline nounwind{{.*}} }