Dan Gohman | 42d311c | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as < %s | llc | not grep call |
2 | |||||
3 | target triple = "i686-pc-linux-gnu" | ||||
4 | |||||
5 | define void @a(i8* %a, i8* %b) nounwind { | ||||
6 | %tmp2 = bitcast i8* %a to i8* | ||||
7 | %tmp3 = bitcast i8* %b to i8* | ||||
8 | tail call void @llvm.memmove.i32( i8* %tmp2, i8* %tmp3, i32 12, i32 4 ) | ||||
9 | ret void | ||||
10 | } | ||||
11 | |||||
12 | declare void @llvm.memmove.i32(i8*, i8*, i32, i32) |