brintos

brintos / llvm-project-archived public Read only

0
0
Text · 215 B · 39e0df6 Raw
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