Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CodeGen / 2006-01-13-Includes.c
blob39e0df68c3b739d1b7aa2943b64db1b2e9902519
1 // RUN: %clang_cc1 %s -debug-info-kind=limited -emit-llvm -o - | FileCheck %s
2 // PR676
4 int printf(const char * restrict format, ...);
6 void test(void) {
7 printf("Hello World\n");
10 // CHECK: test{{[\\/]}}CodeGen