[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / test / CodeGen / Mips / remat-immed-load.ll
blob3d37b43bbc63055e5c44fb9bad709be76678ef7d
1 ; RUN: llc -march=mipsel < %s | FileCheck %s -check-prefix=32
2 ; RUN: llc -march=mips64el -mcpu=mips4 -target-abi=n64 < %s | FileCheck %s -check-prefix=64
3 ; RUN: llc -march=mips64el -mcpu=mips64 -target-abi=n64 < %s | FileCheck %s -check-prefix=64
5 define void @f0() nounwind {
6 entry:
7 ; 32:  addiu $4, $zero, 1
8 ; 32:  addiu $4, $zero, 1
10   tail call void @foo1(i32 1) nounwind
11   tail call void @foo1(i32 1) nounwind
12   ret void
15 declare void @foo1(i32)
17 define void @f3() nounwind {
18 entry:
19 ; 64:  daddiu $4, $zero, 1
20 ; 64:  daddiu $4, $zero, 1
22   tail call void @foo2(i64 1) nounwind
23   tail call void @foo2(i64 1) nounwind
24   ret void
27 declare void @foo2(i64)
29 define void @f5() nounwind {
30 entry:
31 ; 32:  lui $4, 1
32 ; 32:  lui $4, 1
34   tail call void @f6(i32 65536) nounwind
35   tail call void @f6(i32 65536) nounwind
36   ret void
39 declare void @f6(i32)
41 define void @f7() nounwind {
42 entry:
43 ; 64:  lui $4, 1
44 ; 64:  lui $4, 1
46   tail call void @f8(i64 65536) nounwind
47   tail call void @f8(i64 65536) nounwind
48   ret void
51 declare void @f8(i64)