From 842793e45fa23db1c0148809ff615421d5f28325 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 17 Nov 2002 21:06:13 +0000 Subject: [PATCH] New testcase for loads and stores llvm-svn: 4715 --- test/Regression/Jello/test-loadstore.ll | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/Regression/Jello/test-loadstore.ll diff --git a/test/Regression/Jello/test-loadstore.ll b/test/Regression/Jello/test-loadstore.ll new file mode 100644 index 00000000000..f8fadab85e4 --- /dev/null +++ b/test/Regression/Jello/test-loadstore.ll @@ -0,0 +1,12 @@ + +void %test(sbyte* %P, short* %P, int* %P) { + %V = load sbyte* %P + store sbyte %V, sbyte* %P + + %V = load short* %P + store short %V, short* %P + + %V = load int* %P + store int %V, int* %P + ret void +}