[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / zext-logic-shift-load.ll
blob885302a8ea2c13fdba56feabee7671535838d02d
1 ; RUN: llc -mtriple=aarch64-linux-gnu < %s -o - | FileCheck %s
3 define i32 @test1(ptr %p) {
4 ; CHECK:       ldrb
5 ; CHECK-NEXT:  ubfx
6 ; CHECK-NEXT:  ret
8   %1 = load i8, ptr %p
9   %2 = lshr i8 %1, 1
10   %3 = and i8 %2, 1
11   %4 = zext i8 %3 to i32
12   ret i32 %4