From 5728abc6752b2cf2ee4d2e8b4f51601343a3dcc6 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 30 Oct 2002 02:03:59 +0000 Subject: [PATCH] Make the testcase MORE complex git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4448 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Jello/test0.ll | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Jello/test0.ll b/test/Jello/test0.ll index 9de18d05574..4e2d10a3308 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 } -- 2.34.1