Chris Lattner | 1967c7e | 2002-08-19 16:14:10 +0000 | [diff] [blame] | 1 | ; Testcase that seems to break the bytecode reader. This comes from the |
| 2 | ; "crafty" spec benchmark. |
| 3 | ; |
Misha Brukman | 14285c8 | 2003-09-15 20:02:53 +0000 | [diff] [blame] | 4 | ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | llvm-as |
Chris Lattner | 1967c7e | 2002-08-19 16:14:10 +0000 | [diff] [blame] | 5 | |
| 6 | %CHESS_POSITION = type { uint, int } |
| 7 | |
| 8 | %pawn_probes = uninitialized global int ; <int*> [#uses=1] |
| 9 | %pawn_hash_mask = uninitialized global uint ; <uint*> [#uses=0] |
| 10 | |
| 11 | %search = uninitialized global %CHESS_POSITION ; <%CHESS_POSITION*> [#uses=6] |
| 12 | |
| 13 | implementation ; Functions: |
| 14 | |
| 15 | void %Evaluate() { |
| 16 | %reg1321 = getelementptr %CHESS_POSITION* %search, uint 0, ubyte 1 |
| 17 | %reg114 = load int* %reg1321 ; <int> [#uses=0] |
| 18 | |
| 19 | %reg1801 = getelementptr %CHESS_POSITION* %search, uint 0, ubyte 0 |
| 20 | %reg182 = load uint* %reg1801 ; <uint> [#uses=1] |
| 21 | ret void |
| 22 | } |