mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-05 14:34:55 +00:00
d321cdfc1c
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214365 91177308-0d34-0410-b5e6-96231b3b80d8
47 lines
1.2 KiB
LLVM
47 lines
1.2 KiB
LLVM
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
|
; RUN: verify-uselistorder %s -preserve-bc-use-list-order -num-shuffles=5
|
|
|
|
; CHECK: @foo
|
|
; CHECK: shl
|
|
define <4 x i32> @foo(<4 x i32> %a, <4 x i32> %b) nounwind {
|
|
entry:
|
|
%cmp = shl <4 x i32> %a, %b ; <4 x i32> [#uses=1]
|
|
ret <4 x i32> %cmp
|
|
}
|
|
|
|
; CHECK: @bar
|
|
; CHECK: lshr
|
|
define <4 x i32> @bar(<4 x i32> %a, <4 x i32> %b) nounwind {
|
|
entry:
|
|
%cmp = lshr <4 x i32> %a, %b ; <4 x i32> [#uses=1]
|
|
ret <4 x i32> %cmp
|
|
}
|
|
|
|
; CHECK: @baz
|
|
; CHECK: ashr
|
|
define <4 x i32> @baz(<4 x i32> %a, <4 x i32> %b) nounwind {
|
|
entry:
|
|
%cmp = ashr <4 x i32> %a, %b ; <4 x i32> [#uses=1]
|
|
ret <4 x i32> %cmp
|
|
}
|
|
|
|
; Constant expressions: these should be folded.
|
|
|
|
; CHECK: @foo_ce
|
|
; CHECK: ret <2 x i64> <i64 40, i64 192>
|
|
define <2 x i64> @foo_ce() nounwind {
|
|
ret <2 x i64> shl (<2 x i64> <i64 5, i64 6>, <2 x i64> <i64 3, i64 5>)
|
|
}
|
|
|
|
; CHECK: @bar_ce
|
|
; CHECK: ret <2 x i64> <i64 42, i64 11>
|
|
define <2 x i64> @bar_ce() nounwind {
|
|
ret <2 x i64> lshr (<2 x i64> <i64 340, i64 380>, <2 x i64> <i64 3, i64 5>)
|
|
}
|
|
|
|
; CHECK: baz_ce
|
|
; CHECK: ret <2 x i64> <i64 71, i64 12>
|
|
define <2 x i64> @baz_ce() nounwind {
|
|
ret <2 x i64> ashr (<2 x i64> <i64 573, i64 411>, <2 x i64> <i64 3, i64 5>)
|
|
}
|