brintos

brintos / llvm-project-archived public Read only

0
0
Text · 278 B · ce21e7c Raw
10 lines · c
1// RUN: %clang_cc1 -triple x86_64-unk-unk -o - -emit-llvm -debug-info-kind=limited %s | FileCheck %s2 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