From e4ae94c36701692e219a26b06f3cf993e9127383 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4715 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/ExecutionEngine/test-loadstore.ll | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/ExecutionEngine/test-loadstore.ll diff --git a/test/ExecutionEngine/test-loadstore.ll b/test/ExecutionEngine/test-loadstore.ll new file mode 100644 index 00000000000..f8fadab85e4 --- /dev/null +++ b/test/ExecutionEngine/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 +} -- 2.11.0