[cfe-commits] r47841 - /cfe/trunk/test/CodeGen/attributes.c
Gabor Greif
ggreif at gmail.com
Mon Mar 3 06:53:12 PST 2008
Author: ggreif
Date: Mon Mar 3 08:53:09 2008
New Revision: 47841
URL: http://llvm.org/viewvc/llvm-project?rev=47841&view=rev
Log:
The attribute nothrow maps to llvm attribute nounwind. Fix testcase.
Modified:
cfe/trunk/test/CodeGen/attributes.c
Modified: cfe/trunk/test/CodeGen/attributes.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/attributes.c?rev=47841&r1=47840&r2=47841&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/attributes.c (original)
+++ cfe/trunk/test/CodeGen/attributes.c Mon Mar 3 08:53:09 2008
@@ -21,6 +21,6 @@
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() {}
More information about the cfe-commits
mailing list