| Chris Lattner | f687ada | 2003-08-24 19:23:31 +0000 | [diff] [blame] | 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 | |||||