Dan Gohman | 0a06310 | 2009-09-08 23:54:48 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -march=x86 -mtriple=i686-pc-linux-gnu | grep {call memmove} |
Dan Gohman | cc863aa | 2007-08-27 16:26:13 +0000 | [diff] [blame] | 2 | |
3 | declare void @llvm.memmove.i64(i8* %d, i8* %s, i64 %l, i32 %a) | ||||
4 | |||||
5 | define void @foo(i8* %d, i8* %s) | ||||
6 | { | ||||
7 | call void @llvm.memmove.i64(i8* %d, i8* %s, i64 32, i32 1) | ||||
8 | ret void | ||||
9 | } |