summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/X86/shift-pair.ll
blob: 0a1d68db34f84ec01c4ca4223449b6f8df3372cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s

define i64 @test(i64 %A) {
; CHECK-LABEL: test:
; CHECK:       # %bb.0:
; CHECK-NEXT:    shrq $54, %rdi
; CHECK-NEXT:    andl $-4, %edi
; CHECK-NEXT:    movq %rdi, %rax
; CHECK-NEXT:    retq
    %B = lshr i64 %A, 56
    %C = shl i64 %B, 2
    ret i64 %C
}
OpenPOWER on IntegriCloud