OSDN Git Service

this was not supposed to be committed
authorChris Lattner <sabre@nondot.org>
Sun, 20 Sep 2009 22:36:11 +0000 (22:36 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 20 Sep 2009 22:36:11 +0000 (22:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82409 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/GVN/rle.ll

index 6b45890..1c5ab67 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
-}
-
-
-