diff options
Diffstat (limited to 'test/CodeGen/attributes.c')
-rw-r--r-- | test/CodeGen/attributes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/attributes.c b/test/CodeGen/attributes.c index 73e0601894..3533d6d843 100644 --- a/test/CodeGen/attributes.c +++ b/test/CodeGen/attributes.c @@ -21,6 +21,6 @@ int t5 __attribute__((weak)) = 2; int t6 __attribute__((visibility(protected))); // RUN: clang -emit-llvm < %s | grep 't7.*noreturn' -// RUN: clang -emit-llvm < %s | grep 't7.*nothrow' +// RUN: clang -emit-llvm < %s | grep 't7.*nounwind' void t7() __attribute__((noreturn, nothrow)); void t7() {} |