Remove GCSE and LoadVN from the testsuite.
[oota-llvm.git] / test / Analysis / LoadVN / RLE-Preserve-Volatile.ll
diff --git a/test/Analysis/LoadVN/RLE-Preserve-Volatile.ll b/test/Analysis/LoadVN/RLE-Preserve-Volatile.ll
deleted file mode 100644 (file)
index 52968ea..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-; RUN: llvm-as < %s | opt -load-vn -gcse -instcombine | llvm-dis | grep sub
-
-define i32 @test(i32* %P) {
-       %X = volatile load i32* %P              ; <i32> [#uses=1]
-       %Y = volatile load i32* %P              ; <i32> [#uses=1]
-       %Z = sub i32 %X, %Y             ; <i32> [#uses=1]
-       ret i32 %Z
-}