aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/debug-info-args.c
blob: 47c904b999512fecaab940f8e41f54845e423b17 (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -triple x86_64-unk-unk -o - -emit-llvm -g %s | FileCheck %s

int somefunc(char *x, int y, double z) {
  
  // CHECK: !DISubroutineType(types: ![[NUM:[0-9]+]])
  // CHECK: ![[NUM]] = {{!{![^,]*, ![^,]*, ![^,]*, ![^,]*}}}
  
  return y;
}