blob: 0aede064cac1c9f9bb9e3c604b861c91dc979be9 [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +00001; RUN: opt < %s -simplify-libcalls -S | 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