this was not supposed to be committed
[oota-llvm.git] / test / Transforms / GVN / rle.ll
index 6b458903d7b60e05633b1428f8c4e8296ee76e29..1c5ab676f7d25c6e7b9cb79194bafe80bf024ff9 100644 (file)
@@ -191,24 +191,3 @@ Cont:
 ; CHECK: ret i8 %A
 }
 
-;;===----------------------------------------------------------------------===;;
-;; Store -> Load  and  Load -> Load forwarding where src and dst are different
-;; types, and the reload is an offset from the store pointer.
-;;===----------------------------------------------------------------------===;;
-
-;; i32 -> f32 forwarding.
-define i8 @coerce_offset0(i32 %V, i32* %P) {
-  store i32 %V, i32* %P
-   
-  %P2 = bitcast i32* %P to i8*
-  %P3 = getelementptr i8* %P2, i32 2
-
-  %A = load i8* %P3
-  ret i8 %A
-; CHECK: @coerce_offset0
-; CHECK-NOT: load
-; CHECK: ret i8
-}
-
-
-