YouCompleteMe/cpp/llvm/tools/clang/test/CodeGen/debug-info-args.c
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

10 lines
300 B
C

// RUN: %clang_cc1 -triple x86_64-unk-unk -o - -emit-llvm -g %s | FileCheck %s
int somefunc(char *x, int y, double z) {
// CHECK: {{.*metadata !8, i32 0, i32 0}.*DW_TAG_subroutine_type}}
// CHECK: {{!8 = .*metadata ![^,]*, metadata ![^,]*, metadata ![^,]*, metadata ![^,]*}}
return y;
}