llvm/test/CodeGen/X86/fp-fast.ll: Suppress FMA4 on AMD Bulldozer host, corresponding...
[oota-llvm.git] / test / ExecutionEngine / test-constantexpr.ll
index ce723f916f90dd19a44b13f39bd5921eace71f24..d01479a86cdc877a95aa73dcc66ea73de83af0a7 100644 (file)
@@ -1,11 +1,12 @@
-; This tests to make sure that we can evaluate wierd constant expressions
-%A = global int 5
-%B = global int 6
+; RUN: %lli %s > /dev/null
 
-implementation
+; This tests to make sure that we can evaluate weird constant expressions
 
-int %main() {
-       %A = or bool false, setlt (int* %A, int* %B)  ; Which is lower in memory?
-       ret int 0
+@A = global i32 5              ; <i32*> [#uses=1]
+@B = global i32 6              ; <i32*> [#uses=1]
+
+define i32 @main() {
+       %A = or i1 false, icmp slt (i32* @A, i32* @B)           ; <i1> [#uses=0]
+       ret i32 0
 }