1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00
llvm-mirror/test/Regression/ExecutionEngine/test-constantexpr.ll
Chris Lattner de27290f6b Genericize tests
llvm-svn: 10091
2003-11-19 19:44:28 +00:00

12 lines
230 B
LLVM

; 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
}