upgrade this test.
[oota-llvm.git] / test / Transforms / InstCombine / memcpy.ll
1 ; RUN: opt < %s -instcombine -S | FileCheck %s
2
3 declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind
4
5 define void @test4(i8* %a) {
6         tail call void @llvm.memcpy.p0i8.p0i8.i32(i8* %a, i8* %a, i32 100, i32 1, i1 false)
7         ret void
8 }
9 ; CHECK: define void @test4
10 ; CHECK-NEXT: ret void