freebsd-nq/test/CodeGen/attr-noinline.c
2009-06-02 17:58:47 +00:00

10 lines
124 B
C

// RUN: clang-cc -g -emit-llvm -o %t %s &&
// RUN: grep 'noinline' %t
void t1() __attribute__((noinline));
void t1()
{
}