xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/debug-info-line3.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1f4a2713aSLionel Sambuc // RUN: %clang_cc1 -g -S -emit-llvm %s -o - | FileCheck %s
2f4a2713aSLionel Sambuc 
func(char c,char * d)3f4a2713aSLionel Sambuc void func(char c, char* d)
4f4a2713aSLionel Sambuc {
5f4a2713aSLionel Sambuc   *d = c + 1;
6f4a2713aSLionel Sambuc   return;
7f4a2713aSLionel Sambuc 
8f4a2713aSLionel Sambuc 
9f4a2713aSLionel Sambuc 
10f4a2713aSLionel Sambuc 
11f4a2713aSLionel Sambuc 
12f4a2713aSLionel Sambuc 
13f4a2713aSLionel Sambuc }
14f4a2713aSLionel Sambuc 
15f4a2713aSLionel Sambuc // CHECK: ret void, !dbg [[LINE:.*]]
16*0a6a1f1dSLionel Sambuc // CHECK: [[LINE]] = !MDLocation(line: 6,
17