Home | History | Annotate | Download | only in Assembler
      1 ; Testcase that seems to break the bytecode reader.  This comes from the
      2 ; "crafty" spec benchmark.
      3 ;
      4 ; RUN: opt < %s -instcombine | llvm-dis
      5 	
      6 %CHESS_POSITION = type { i32, i32 }
      7 @pawn_probes = external global i32		; <i32*> [#uses=0]
      8 @pawn_hash_mask = external global i32		; <i32*> [#uses=0]
      9 @search = external global %CHESS_POSITION		; <%CHESS_POSITION*> [#uses=2]
     10 
     11 define void @Evaluate() {
     12 	%reg1321 = getelementptr %CHESS_POSITION* @search, i64 0, i32 1		; <i32*> [#uses=1]
     13 	%reg114 = load i32* %reg1321		; <i32> [#uses=0]
     14 	%reg1801 = getelementptr %CHESS_POSITION* @search, i64 0, i32 0		; <i32*> [#uses=1]
     15 	%reg182 = load i32* %reg1801		; <i32> [#uses=0]
     16 	ret void
     17 }
     18