aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/test-constantexpr.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/ExecutionEngine/test-constantexpr.ll')
-rw-r--r--test/ExecutionEngine/test-constantexpr.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/ExecutionEngine/test-constantexpr.ll b/test/ExecutionEngine/test-constantexpr.ll
new file mode 100644
index 0000000..1ee7e14
--- /dev/null
+++ b/test/ExecutionEngine/test-constantexpr.ll
@@ -0,0 +1,14 @@
+; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
+; RUN: lli %t.bc > /dev/null
+
+; This tests to make sure that we can evaluate weird constant expressions
+%A = global int 5
+%B = global int 6
+
+implementation
+
+int %main() {
+ %A = or bool false, setlt (int* %A, int* %B) ; Which is lower in memory?
+ ret int 0
+}
+