summaryrefslogtreecommitdiffstats
path: root/llvm/test/exprtest.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-01-17 19:45:49 +0000
committerChris Lattner <sabre@nondot.org>2003-01-17 19:45:49 +0000
commitb8c971cf00691ca2a71e1c0772187cea624788a3 (patch)
treeda4e8ad57dfd5e14bef18d14c8efa9c9df604ff5 /llvm/test/exprtest.ll
parentdcb5950beb82ba0e5ec6faae2b994bfa5114cc28 (diff)
downloadbcm5719-llvm-b8c971cf00691ca2a71e1c0772187cea624788a3.tar.gz
bcm5719-llvm-b8c971cf00691ca2a71e1c0772187cea624788a3.zip
Remove obsolete tests
llvm-svn: 5361
Diffstat (limited to 'llvm/test/exprtest.ll')
-rw-r--r--llvm/test/exprtest.ll32
1 files changed, 0 insertions, 32 deletions
diff --git a/llvm/test/exprtest.ll b/llvm/test/exprtest.ll
deleted file mode 100644
index d7fb15c7039..00000000000
--- a/llvm/test/exprtest.ll
+++ /dev/null
@@ -1,32 +0,0 @@
-implementation
-int "testExpressions"(int %N, int* %A)
-begin
- %N1 = add int %N, 12
- %N2 = mul int %N, 7
- %N3 = add int %N1, %N2 ;; Should equal 8*N+12
- %N4 = shl int %N3, ubyte 3 ;; Should equal 64*N + 96
- %N5 = mul int %N4, 0 ;; 0
- br label %1
-
- %C = cast int 264 to ubyte ;; 8
- %C1 = add ubyte 252, %C ;; 4
- %C2 = cast ubyte %C1 to ulong ;; 4
- %C3 = add ulong 12345678901, %C2 ;; 12345678905
- %C4 = cast ulong %C3 to sbyte * ;; 12345678905
- br label %2
-
- %A1 = cast int 4 to int *
- %A2 = add int *%A, %A1 ;; %A+4
- %A3 = cast int 8 to int *
- %A4 = add int *%A, %A3 ;; %A+8
- %X = sub int *%A4, %A2 ;; Should equal 4
- br label %3
-
- %Z1 = cast int 400 to int *
- %Z2 = cast sbyte 2 to int *
- %Z3 = add int* %Z1, %Z2
- %Z4 = cast int* %Z3 to ubyte
-
- ret int %N4
-end
-
OpenPOWER on IntegriCloud