blob: 3e497618015cfdb7cdca8a1c3d2ee11765fba756 [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;
Misha Brukman14285c82003-09-15 20:02:53 +00004; RUN: llvm-as < %s | opt -instcombine | llvm-dis | llvm-as
Chris Lattner1967c7e2002-08-19 16:14:10 +00005
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}