[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / PowerPC / or-addressing-mode.ll
blob53d9a02edb6af7fbccbdb88d0470fb3148ca6d47
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu | not grep ori
2 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu | not grep rlwimi
4 define i32 @test1(ptr %P) {
5         %tmp.2.i = ptrtoint ptr %P to i32               ; <i32> [#uses=2]
6         %tmp.4.i = and i32 %tmp.2.i, -65536             ; <i32> [#uses=1]
7         %tmp.10.i = lshr i32 %tmp.2.i, 5                ; <i32> [#uses=1]
8         %tmp.11.i = and i32 %tmp.10.i, 2040             ; <i32> [#uses=1]
9         %tmp.13.i = or i32 %tmp.11.i, %tmp.4.i          ; <i32> [#uses=1]
10         %tmp.14.i = inttoptr i32 %tmp.13.i to ptr              ; <ptr> [#uses=1]
11         %tmp.3 = load i32, ptr %tmp.14.i            ; <i32> [#uses=1]
12         ret i32 %tmp.3
15 define i32 @test2(i32 %P) {
16         %tmp.2 = shl i32 %P, 4          ; <i32> [#uses=1]
17         %tmp.3 = or i32 %tmp.2, 2               ; <i32> [#uses=1]
18         %tmp.4 = inttoptr i32 %tmp.3 to ptr            ; <ptr> [#uses=1]
19         %tmp.5 = load i32, ptr %tmp.4               ; <i32> [#uses=1]
20         ret i32 %tmp.5