blob: dbca71ff5fb27d983888d9f196f13e2a098923cf [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -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