[analyzer] Use the new registration mechanism on the non-path-sensitive-checkers:
[clang.git] / test / CodeGen / attr-nodebug.c
blob66caa2b38fac9436b2b23c83a90d2139dfbbceb3
1 // RUN: %clang_cc1 -g -emit-llvm -o %t %s
2 // RUN: not grep 'call void @llvm.dbg.func.start' %t
4 void t1() __attribute__((nodebug));
6 void t1()
8 int a = 10;
10 a++;