summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/attr-noinline.c
blob: dbca71ff5fb27d983888d9f196f13e2a098923cf (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -g -emit-llvm -o %t %s
// RUN: grep 'noinline' %t

void t1() __attribute__((noinline));

void t1()
{
}