blob: dbca71ff5fb27d983888d9f196f13e2a098923cf [file] [log] [blame]
Shih-wei Liaoea285162010-06-04 12:34:56 -07001// RUN: %clang_cc1 -g -emit-llvm -o %t %s
2// RUN: grep 'noinline' %t
3
4void t1() __attribute__((noinline));
5
6void t1()
7{
8}
9