Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / global-fill.ll
blob41493b2d917fbc8a56c770c347529de5f1475147
1 ; RUN: llc -mtriple=x86_64-apple-darwin < %s | FileCheck %s
3 @test1 = global [2 x i24] [i24 -1, i24 -1]
4 ; CHECK-LABEL: test1:
5 ; CHECK-NEXT: .short    65535
6 ; CHECK-NEXT: .byte     255
7 ; CHECK-NEXT: .space    1
8 ; CHECK-NEXT: .short    65535
9 ; CHECK-NEXT: .byte     255
10 ; CHECK-NEXT: .space    1
12 @test2 = global [2 x i7] [i7 1, i7 1]
13 ; CHECK-LABEL: test2:
14 ; CHECK-NEXT: .space 2,1
16 @test3 = global [4 x i128] [i128 -1, i128 -1, i128 -1, i128 -1]
17 ; CHECK-LABEL: test3:
18 ; CHECK-NEXT: .space 64,255
20 @test4 = global [3 x i16] [i16 257, i16 257, i16 257]
21 ; CHECK-LABEL: test4:
22 ; CHECK-NEXT: .space 6,1
24 @test5 = global [2 x [2 x i16]] [[2 x i16] [i16 257, i16 257], [2 x i16] [i16 -1, i16 -1]]
25 ; CHECK-LABEL: test5:
26 ; CHECK-NEXT: .space 4,1
27 ; CHECK-NEXT: .space 4,255
29 @test6 = global [2 x [2 x i16]] [[2 x i16] [i16 257, i16 257], [2 x i16] [i16 257, i16 257]]
30 ; CHECK-LABEL: test6:
31 ; CHECK-NEXT: .space 8,1