summaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine
diff options
context:
space:
mode:
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r--test/ExecutionEngine/test-logical.ll4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ExecutionEngine/test-logical.ll b/test/ExecutionEngine/test-logical.ll
index 731f8e5..e6b628a 100644
--- a/test/ExecutionEngine/test-logical.ll
+++ b/test/ExecutionEngine/test-logical.ll
@@ -12,5 +12,9 @@ int %main() {
%B = or int %A, 7
%C = xor int %B, %A
+ %A = and long 4, 8
+ %B = or long %A, 7
+ %C = xor long %B, %A
+
ret int 0
}