1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/Assembler/2003-11-12-ConstantExprCast.ll
Duncan P. N. Exon Smith f58c944271 verify-uselistorder: Add RUN lines to cases in test/Assembly
Add RUN line for `verify-uselistorder` to every test in `test/Assembly`,
unless it's a negative check (assembler rejects it) or verification
fails.

There are three files that verification fails on (so I've left out the
RUN lines):

  - 2002-08-22-DominanceProblem.ll
  - ConstantExprFold.ll
  - ConstantExprFoldCast.ll

This is part of PR5680.

llvm-svn: 214365
2014-07-31 00:10:27 +00:00

12 lines
422 B
LLVM

; RUN: llvm-as < %s | llvm-dis | not grep " bitcast ("
; RUN: verify-uselistorder %s -preserve-bc-use-list-order -num-shuffles=5
@.Base64_1 = external constant [4 x i8] ; <[4 x i8]*> [#uses=1]
define i8 @test(i8 %Y) {
%X = bitcast i8 %Y to i8 ; <i8> [#uses=1]
%tmp.13 = add i8 %X, sub (i8 0, i8 ptrtoint ([4 x i8]* @.Base64_1 to i8)) ; <i8> [#uses=1]
ret i8 %tmp.13
}