summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-05-27 17:28:55 +0000
committerChris Lattner <sabre@nondot.org>2004-05-27 17:28:55 +0000
commit3ba30975169ba01a63cba40e95cc6cc3f8e1cec5 (patch)
treee951b060b9a8e65b759e479f8552e385ee16b76f /test
parentec7eb45926dc40a80534bad729be825bf129a126 (diff)
downloadllvm-3ba30975169ba01a63cba40e95cc6cc3f8e1cec5.tar.gz
llvm-3ba30975169ba01a63cba40e95cc6cc3f8e1cec5.tar.bz2
llvm-3ba30975169ba01a63cba40e95cc6cc3f8e1cec5.tar.xz
Add another testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13833 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/InstCombine/load.ll12
1 files changed, 7 insertions, 5 deletions
diff --git a/test/Transforms/InstCombine/load.ll b/test/Transforms/InstCombine/load.ll
index fa40284e59..993f7c1a3f 100644
--- a/test/Transforms/InstCombine/load.ll
+++ b/test/Transforms/InstCombine/load.ll
@@ -6,10 +6,7 @@
%X = constant int 42
%Y = constant [2 x { int, float }] [ { int, float } { int 12, float 1.0 },
{ int, float } { int 37, float 1.2312 } ]
-int %test1() {
- %B = load int* %X
- ret int %B
-}
+%Z = constant [2 x { int, float }] zeroinitializer
float %test2() {
%A = getelementptr [2 x { int, float}]* %Y, long 0, long 1, ubyte 1
@@ -17,10 +14,15 @@ float %test2() {
ret float %B
}
+
int %test3() {
%A = getelementptr [2 x { int, float}]* %Y, long 0, long 0, ubyte 0
%B = load int* %A
ret int %B
}
-
+int %test4() {
+ %A = getelementptr [2 x { int, float}]* %Z, long 0, long 1, ubyte 0
+ %B = load int* %A
+ ret int %B
+}