Constant fold the isnan intrinsic
[oota-llvm.git] / test / Analysis / DSGraph / 2004-02-13-memcpy.ll
1 ; RUN: analyze %s -datastructure-gc -dsgc-check-flags=X:SMR
2
3 declare void %llvm.memcpy(sbyte*, sbyte*, uint, uint)
4
5 void %test() {
6         %X = alloca int
7         %Y = alloca int
8         %x = cast int* %X to sbyte*
9         %y = cast int* %Y to sbyte*
10         store int 4, int* %X
11         call void %llvm.memcpy(sbyte* %x, sbyte* %y, uint 4, uint 4)
12         ret void
13 }