summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-01-13 00:57:04 +0000
committerChris Lattner <sabre@nondot.org>2003-01-13 00:57:04 +0000
commite1ac72a68c4daa755f7b9216cd32e904a9aa0dc7 (patch)
treed6b309df3b23c6bf5188054dfd98edb453cf00f9 /test/ExecutionEngine
parent6442a3eaae4cdac023bd6d73ac884886fbdb864c (diff)
Add test for longs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5246 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r--test/ExecutionEngine/test-loadstore.ll9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/ExecutionEngine/test-loadstore.ll b/test/ExecutionEngine/test-loadstore.ll
index 1685c78142f..35a2c5fcb15 100644
--- a/test/ExecutionEngine/test-loadstore.ll
+++ b/test/ExecutionEngine/test-loadstore.ll
@@ -1,5 +1,5 @@
-void %test(sbyte* %P, short* %P, int* %P) {
+void %test(sbyte* %P, short* %P, int* %P, long* %P) {
%V = load sbyte* %P
store sbyte %V, sbyte* %P
@@ -8,6 +8,10 @@ void %test(sbyte* %P, short* %P, int* %P) {
%V = load int* %P
store int %V, int* %P
+
+ %V = load long* %P
+ store long %V, long* %P
+
ret void
}
@@ -22,7 +26,8 @@ int %main() {
%A = alloca sbyte
%B = alloca short
%C = alloca int
- call void %test(sbyte* %A, short* %B, int* %C)
+ %D = alloca long
+ call void %test(sbyte* %A, short* %B, int* %C, long* %D)
call uint %varalloca(uint 7)
ret int 0