Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CodeGen / thinlto-opaque-typed-mix.ll
blobc146e1a0128b89e5c99566522e7748a30bdba83d
1 ; REQUIRES: x86-registered-target
2 ; Test that mixing bitcode file with opaque and typed pointers works.
4 ; RUN: mkdir -p %t
5 ; RUN: opt -module-summary -o %t/typed.bc %s
6 ; RUN: opt -module-summary -o %t/opaque.bc %S/Inputs/thinlto-opaque.ll
7 ; RUN: llvm-lto2 run -thinlto-distributed-indexes %t/typed.bc %t/opaque.bc \
8 ; RUN:   -o %t/native.o -r %t/typed.bc,main,plx -r %t/typed.bc,f2, \
9 ; RUN:   -r %t/opaque.bc,f2,p
11 ; RUN: %clang_cc1 -triple x86_64-- -emit-obj -o %t/native.o %t/typed.bc \
12 ; RUN:   -Wno-override-module \
13 ; RUN:   -fthinlto-index=%t/typed.bc.thinlto.bc
15 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
16 target triple = "x86_64--"
18 declare ptr @f2()
20 define i32 @main() {
21   call ptr @f2()
22   ret i32 0