• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: opt < %s -simplify-libcalls -S | grep {llvm.memmove}
2target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32"
3target triple = "i686-pc-linux-gnu"
4
5define i8* @test(i8* %a, i8* %b, i32 %x) {
6entry:
7	%call = call i8* @memmove(i8* %a, i8* %b, i32 %x )
8	ret i8* %call
9}
10
11declare i8* @memmove(i8*,i8*,i32)
12
13