aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/GVN/rle.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-20 22:36:11 +0000
committerChris Lattner <sabre@nondot.org>2009-09-20 22:36:11 +0000
commit6a089c32570e4ac42f5feb7070cb729790bf595b (patch)
tree233b165523252c3daed449e6c80b204d6c91caa8 /test/Transforms/GVN/rle.ll
parentf15380ba8ae35941dcd56d9a288ad023295dde30 (diff)
downloadexternal_llvm-6a089c32570e4ac42f5feb7070cb729790bf595b.zip
external_llvm-6a089c32570e4ac42f5feb7070cb729790bf595b.tar.gz
external_llvm-6a089c32570e4ac42f5feb7070cb729790bf595b.tar.bz2
this was not supposed to be committed
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82409 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/GVN/rle.ll')
-rw-r--r--test/Transforms/GVN/rle.ll21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/Transforms/GVN/rle.ll b/test/Transforms/GVN/rle.ll
index 6b45890..1c5ab67 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
-}
-
-
-