Floating-point add, sub, and mul are now spelled fadd, fsub, and fmul,
[oota-llvm.git] / test / Transforms / InstCombine / memcpy.ll
1 ; RUN: opt < %s -instcombine -S | FileCheck %s
2
3 declare void @llvm.memcpy.i32(i8*, i8*, i32, i32)
4
5 define void @test4(i8* %a) {
6         tail call void @llvm.memcpy.i32( i8* %a, i8* %a, i32 100, i32 1 )
7         ret void
8 }
9 ; CHECK: define void @test4
10 ; CHECK-NEXT: ret void