11 lines · c
1// RUN: %clang_cc1 %s -debug-info-kind=limited -emit-llvm -o - | FileCheck %s2// PR6763 4int printf(const char * restrict format, ...);5 6void test(void) {7 printf("Hello World\n");8}9 10// CHECK: test{{[\\/]}}CodeGen11 1// RUN: %clang_cc1 %s -debug-info-kind=limited -emit-llvm -o - | FileCheck %s2// PR6763 4int printf(const char * restrict format, ...);5 6void test(void) {7 printf("Hello World\n");8}9 10// CHECK: test{{[\\/]}}CodeGen11