opnsense-src/test/CodeGen/attr-noinline.c

10 lines
123 B
C
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -g -emit-llvm -o %t %s
2009-06-02 13:58:47 -04:00
// RUN: grep 'noinline' %t
void t1() __attribute__((noinline));
void t1()
{
}