xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/debug-info-args.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple x86_64-unk-unk -o - -emit-llvm -g %s | FileCheck %s
2f4a2713aSLionel Sambuc 
somefunc(char * x,int y,double z)3f4a2713aSLionel Sambuc int somefunc(char *x, int y, double z) {
4f4a2713aSLionel Sambuc 
5*0a6a1f1dSLionel Sambuc   // CHECK: ![[NUM:[^,]*]], null, null, null} ; [ DW_TAG_subroutine_type
6*0a6a1f1dSLionel Sambuc   // CHECK: ![[NUM]] = {{!{![^,]*, ![^,]*, ![^,]*, ![^,]*}}}
7f4a2713aSLionel Sambuc 
8f4a2713aSLionel Sambuc   return y;
9f4a2713aSLionel Sambuc }
10