Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CodeGen / thinlto-emit-llvm.c
blobde66b12fef202cf882607c7456add80aa89a4284
1 // Test to ensure -emit-llvm and -emit-llvm-bc work when invoking the
2 // ThinLTO backend path.
3 // RUN: %clang -O2 %s -flto=thin -c -o %t.o
4 // RUN: llvm-lto -thinlto -o %t %t.o
5 // RUN: %clang_cc1 -O2 -x ir %t.o -fthinlto-index=%t.thinlto.bc -emit-llvm -o - | FileCheck %s
6 // RUN: %clang_cc1 -O2 -x ir %t.o -fthinlto-index=%t.thinlto.bc -emit-llvm-bc -o - | llvm-dis -o - | FileCheck %s
8 // CHECK: define{{.*}} void @foo()
9 void foo(void) {