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

void t1() __attribute__((noinline));

void t1()
{
}