Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-split / scc-global2global.ll
blob4bf6713038ce700b2a031d9b0c01f40248669a9a
1 ; All of the functions and globals in this module must end up
2 ; in the same partition.
4 ; RUN: llvm-split -j=2 -preserve-locals -o %t %s
5 ; RUN: llvm-dis -o - %t0 | FileCheck --check-prefix=CHECK1 %s
6 ; RUN: llvm-dis -o - %t1 | FileCheck --check-prefix=CHECK0 %s
8 ; CHECK0: declare dso_local ptr @local0
9 ; CHECK0: declare dso_local ptr @local1
11 ; CHECK1: @bla
12 ; CHECK1: @ptr
13 ; CHECK1: define internal ptr @local0
14 ; CHECK1: define internal ptr @local1
16 %struct.anon = type { i64, i64 }
18 @bla = internal global %struct.anon { i64 1, i64 2 }, align 8
19 @ptr = internal global ptr @bla, align 4
21 define internal ptr @local0() {
22   ret ptr @bla
25 define internal ptr @local1() {
26   ret ptr @ptr