blob: b96ad26d6d04c0cb451c70b75a2de3b0da164196 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +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