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