The attribute nothrow maps to llvm attribute nounwind. Fix testcase.

llvm-svn: 47841
This commit is contained in:
Gabor Greif 2008-03-03 14:53:09 +00:00
parent 76ac5cf9d3
commit e2e5c3f394
1 changed files with 1 additions and 1 deletions

View File

@ -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() {}