summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-05-27 07:36:08 +0000
committerChris Lattner <sabre@nondot.org>2004-05-27 07:36:08 +0000
commitc0e61e31951929d37468528f81303914fa817873 (patch)
tree4a0fe3063dbc478f8279d365319aca2b273c7b4a /test
parent413c76f3bc9701f004aaad038c21b6fbcd061782 (diff)
downloadllvm-c0e61e31951929d37468528f81303914fa817873.tar.gz
llvm-c0e61e31951929d37468528f81303914fa817873.tar.bz2
llvm-c0e61e31951929d37468528f81303914fa817873.tar.xz
The -exprs pass is no longer with LLVM. *sniff*
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13825 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Other/2002-03-11-ExprAssertion.ll13
-rw-r--r--test/Other/2002-03-14-ValueToLarge.ll16
2 files changed, 0 insertions, 29 deletions
diff --git a/test/Other/2002-03-11-ExprAssertion.ll b/test/Other/2002-03-11-ExprAssertion.ll
deleted file mode 100644
index 4c6dcb642a..0000000000
--- a/test/Other/2002-03-11-ExprAssertion.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; RUN: analyze -exprs %s
-
-implementation
-
-void "foo"(int %reg126)
-begin
- %cast1007 = cast int %reg126 to uint ; <uint> [#uses=1]
-
- %reg119 = sub uint %cast1007, %cast1007 ; <uint> [#uses=1]
- %cast121 = cast uint %reg119 to sbyte * ; <sbyte *> [#uses=1]
-
- ret void
-end
diff --git a/test/Other/2002-03-14-ValueToLarge.ll b/test/Other/2002-03-14-ValueToLarge.ll
deleted file mode 100644
index 8daa138c88..0000000000
--- a/test/Other/2002-03-14-ValueToLarge.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; Expression analysis had a problem where the following assertion would get
-; emitted:
-; Constants.cpp:114: failed assertion `isValueValidForType(Ty, V) &&
-; "Value too large for type!"'
-;
-; Testcase distilled from the bzip2 SPECint benchmark.
-;
-; RUN: analyze -exprs %s
-
-implementation
-
-void "sortIt"(ubyte %X)
-begin
- %reg115 = shl ubyte %X, ubyte 8
- ret void
-end