New testcase, distilled from 176.gcc codegen failure
[oota-llvm.git] / test / ExecutionEngine / test-constantexpr.ll
1 ; This tests to make sure that we can evaluate wierd constant expressions
2 %A = global int 5
3 %B = global int 6
4
5 implementation
6
7 int %main() {
8         %A = or bool false, setlt (int* %A, int* %B)  ; Which is lower in memory?
9         ret int 0
10 }
11