2002-08-19-BytecodeReader.ll 748 B

123456789101112131415161718
  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. ; RUN: verify-uselistorder %s
  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. define void @Evaluate() {
  11. %reg1321 = getelementptr %CHESS_POSITION, %CHESS_POSITION* @search, i64 0, i32 1 ; <i32*> [#uses=1]
  12. %reg114 = load i32, i32* %reg1321 ; <i32> [#uses=0]
  13. %reg1801 = getelementptr %CHESS_POSITION, %CHESS_POSITION* @search, i64 0, i32 0 ; <i32*> [#uses=1]
  14. %reg182 = load i32, i32* %reg1801 ; <i32> [#uses=0]
  15. ret void
  16. }