Clang Project

clang_source_code/test/CodeGen/debug-info-args.c
1// RUN: %clang_cc1 -triple x86_64-unk-unk -o - -emit-llvm -debug-info-kind=limited %s | FileCheck %s
2
3int somefunc(char *x, int y, double z) {
4  
5  // CHECK: !DISubroutineType(types: ![[NUM:[0-9]+]])
6  // CHECK: ![[NUM]] = {{!{![^,]*, ![^,]*, ![^,]*, ![^,]*}}}
7  
8  return y;
9}
10