From 6a089c32570e4ac42f5feb7070cb729790bf595b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 20 Sep 2009 22:36:11 +0000 Subject: [PATCH] this was not supposed to be committed git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82409 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/GVN/rle.ll | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/test/Transforms/GVN/rle.ll b/test/Transforms/GVN/rle.ll index 6b458903d7b..1c5ab676f7d 100644 --- a/test/Transforms/GVN/rle.ll +++ b/test/Transforms/GVN/rle.ll @@ -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 -} - - -