blob: b709059d0e50670915e96d0feb117c55b80f69de [file] [log] [blame]
Dan Gohman1b4c27772009-09-08 16:50:01 +00001; RUN: opt %s -simplify-libcalls | llvm-dis | grep {llvm.memset}
Eli Friedmanae9c66c2008-11-30 08:32:11 +00002target 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, i32 %b, i32 %x) {
6entry:
7 %call = call i8* @memset(i8* %a, i32 %b, i32 %x )
8 ret i8* %call
9}
10
11declare i8* @memset(i8*,i32,i32)
12