blob: 24ba1fc77074a758bf5dfccce48b334d60230b2c [file] [log] [blame]
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00001; RUN: llc < %s -march=x86-64 | FileCheck %s
2
3define i64 @test(i64 %A) {
4; CHECK: @test
5; CHECK: shrq $54
6; CHECK: andq $1020
7; CHECK: ret
8 %B = lshr i64 %A, 56
9 %C = shl i64 %B, 2
10 ret i64 %C
11}