mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
4969310052
This required disabling a PowerPC optimization that did the following: input: x = BUILD_VECTOR <i32 16, i32 16, i32 16, i32 16> lowered to: tmp = BUILD_VECTOR <i32 8, i32 8, i32 8, i32 8> x = ADD tmp, tmp The add now gets folded immediately and we're back at the BUILD_VECTOR we started from. I don't see a way to fix this currently so I left it disabled for now. Fix some trivially foldable X86 tests too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174325 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
346 B
LLVM
12 lines
346 B
LLVM
; RUN: llc < %s -march=ppc32 -mcpu=g5 | grep vadduhm
|
|
; RUN: llc < %s -march=ppc32 -mcpu=g5 | grep vsubuhm
|
|
; XFAIL: *
|
|
|
|
define <4 x i32> @test() nounwind {
|
|
ret <4 x i32> < i32 4293066722, i32 4293066722, i32 4293066722, i32 4293066722>
|
|
}
|
|
|
|
define <4 x i32> @test2() nounwind {
|
|
ret <4 x i32> < i32 1114129, i32 1114129, i32 1114129, i32 1114129>
|
|
}
|