blob: e0c813399fb95c5f713e7499072e8223edbb7b3b [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -g -emit-llvm -o %t %s
Anders Carlssone896d982009-02-13 08:11:52 +00002// RUN: not grep 'call void @llvm.dbg.func.start' %t
3
4void t1() __attribute__((nodebug));
5
6void t1()
7{
8 int a = 10;
9
10 a++;
11}
12