blob: 302a30ae6a5f1f8ec7c30cdff295ef989dfcbb6e [file] [log] [blame]
Chris Lattner1967c7e2002-08-19 16:14:10 +00001; Testcase that seems to break the bytecode reader. This comes from the
2; "crafty" spec benchmark.
3;
4; RUN: as < %s | opt -instcombine | dis | as
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
13implementation ; Functions:
14
15void %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}