[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / test / CodeGen / Hexagon / split-const32-const64.ll
blob5766053ae5ead6f5e14e7e4e0d7c0fd8d8eef059
1 ; RUN: llc -march=hexagon -hexagon-small-data-threshold=0 < %s | FileCheck %s
3 ; Check that CONST32/CONST64 instructions are 'not' generated when the
4 ; small data threshold is set to 0.
6 @a = external global i32
7 @b = external global i32
8 @la = external global i64
9 @lb = external global i64
11 ; CHECK-LABEL: test1:
12 ; CHECK-NOT: CONST32
13 define void @test1() nounwind {
14 entry:
15   br label %block
16 block:
17   store i32 12345670, ptr @a, align 4
18   %q = ptrtoint ptr blockaddress (@test1, %block) to i32
19   store i32 %q, ptr @b, align 4
20   ret void
23 ; CHECK-LABEL: test2:
24 ; CHECK-NOT: CONST64
25 define void @test2() nounwind {
26 entry:
27   store i64 1234567890123, ptr @la, align 8
28   store i64 1234567890123, ptr @lb, align 8
29   ret void