aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-30 02:03:59 +0000
committerChris Lattner <sabre@nondot.org>2002-10-30 02:03:59 +0000
commit5728abc6752b2cf2ee4d2e8b4f51601343a3dcc6 (patch)
treefa0b1e6faf3b6634166e562dfb20d3c1fac1b1e8
parent188732c971e06823a6dcd3320d5f8429642acedb (diff)
Make the testcase MORE complex
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4448 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Jello/test0.ll3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Jello/test0.ll b/test/Jello/test0.ll
index 9de18d0557..4e2d10a330 100644
--- a/test/Jello/test0.ll
+++ b/test/Jello/test0.ll
@@ -1,6 +1,7 @@
; test ret
void %main() {
BB0:
- add int 1, 2
+ %X = add int 1, 2
+ %Y = add int %X, %X
ret void
}