Handle logical shift right (at least I hope so :) )
[llvm/msp430.git] / test / CodeGen / X86 / memmove-1.ll
blob3b2debc247dd344fa89f0ba1f05f16e7a360c7ce
1 ; RUN: llvm-as < %s | llc -march=x86 -mtriple=i686-pc-linux-gnu | grep {call    memmove}
3 declare void @llvm.memmove.i64(i8* %d, i8* %s, i64 %l, i32 %a)
5 define void @foo(i8* %d, i8* %s, i64 %l)
7   call void @llvm.memmove.i64(i8* %d, i8* %s, i64 %l, i32 1)
8   ret void