diff options
Diffstat (limited to 'clang/test/CodeGen/function-attributes.c')
-rw-r--r-- | clang/test/CodeGen/function-attributes.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/CodeGen/function-attributes.c b/clang/test/CodeGen/function-attributes.c index 3269f98a56d..b1209766d8d 100644 --- a/clang/test/CodeGen/function-attributes.c +++ b/clang/test/CodeGen/function-attributes.c @@ -24,8 +24,7 @@ void f6(signed short x) { } void f7(unsigned short x) { } -// F8 is dead so it should not be emitted. -// RUN: not grep '@f8' %t && +// RUN: grep 'define void @f8() nounwind alwaysinline' %t && void __attribute__((always_inline)) f8(void) { } // RUN: grep 'call void @f9_t() noreturn' %t && |