Files
clang-p2996/llvm/test/Regression/ExecutionEngine/test-constantexpr.ll
Chris Lattner efdc952714 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
}