llvm-6502/test/ExecutionEngine/test-constantexpr.ll

12 lines
230 B
LLVM
Raw Normal View History

; This tests to make sure that we can evaluate wierd 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
}