[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / ThinLTOBitcodeWriter / split-dsolocal.ll
blob78dfba4d87d770f1fb36042844ad3e33376fe070
1 ; RUN: opt -thinlto-bc -thinlto-split-lto-unit -o %t %s
2 ; RUN: llvm-modextract -b -n 0 -o %t0.bc %t
3 ; RUN: llvm-modextract -b -n 1 -o %t1.bc %t
4 ; RUN: llvm-dis -o - %t0.bc | FileCheck --check-prefix=M0 %s
5 ; RUN: llvm-dis -o - %t1.bc | FileCheck --check-prefix=M1 %s
7 ; M0: @default = external constant [1 x i8]
8 ; M0: @hidden = external hidden constant [1 x i8]
9 ; M0: @al = external global [1 x i8]
11 ; M1: @default = dso_local constant [1 x i8] c"0", !type !0
12 ; M1: @hidden = hidden constant [1 x i8] c"0", !type !0
13 ; M1: @al = dso_local alias [1 x i8], [1 x i8]* @default
14 @default = dso_local constant [1 x i8] c"0", !type !0
15 @hidden = dso_local hidden constant [1 x i8] c"0", !type !0
17 @al = dso_local alias [1 x i8], [1 x i8]* @default
19 define [1 x i8]* @f_default() { ret [1 x i8]* @default }
20 define [1 x i8]* @f_hidden() { ret [1 x i8]* @hidden }
21 define [1 x i8]* @f_al() { ret [1 x i8]* @al }
23 !0 = !{i32 0, !"typeid"}