blob: 199c2918d42553ce9ceb11e8a92bc7188c1654a0 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -g -emit-llvm -o %t %s &&
Anders Carlsson81ebbde2009-02-19 19:22:11 +00002// RUN: grep 'noinline' %t
3
4void t1() __attribute__((noinline));
5
6void t1()
7{
8}
9