diff options
Diffstat (limited to 'test/CodeGen/2008-04-08-NoExceptions.c')
-rw-r--r-- | test/CodeGen/2008-04-08-NoExceptions.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/CodeGen/2008-04-08-NoExceptions.c b/test/CodeGen/2008-04-08-NoExceptions.c index ab2781b..1213492 100644 --- a/test/CodeGen/2008-04-08-NoExceptions.c +++ b/test/CodeGen/2008-04-08-NoExceptions.c @@ -2,9 +2,11 @@ void f(void); void g(void) { - // CHECK: define void @g() nounwind + // CHECK: define void @g() [[NUW:#[0-9]+]] // CHECK-NOT: call void @f() nounwind f(); } -// CHECK-NOT: declare void @f() nounwind +// CHECK-NOT: declare void @f() [[NUW]] + +// CHECK: attributes [[NUW]] = { nounwind{{.*}} } |