blob: fc22a3c69139dd5ccaabd81ea172f5927ac85b08 [file] [log] [blame]
Evan Cheng6fb21682009-03-31 19:39:24 +00001; RUN: llvm-as < %s | llc -march=x86
2; RUN: llvm-as < %s | llc -march=x86-64
3
4define void @t(i128 %x, i128 %a, i128* nocapture %r) nounwind {
5entry:
6 %0 = lshr i128 %x, %a
7 store i128 %0, i128* %r, align 16
8 ret void
9}