mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
db43217a24
Currently we have a number of tests that fail with -verify-machineinstrs. To detect this cases earlier we add the option to the testcases with the exception of tests that will currently fail with this option. PR 27456 keeps track of this failures. No code review, as discussed with Hal Finkel. llvm-svn: 277624
11 lines
379 B
LLVM
11 lines
379 B
LLVM
; RUN: llc -verify-machineinstrs < %s -march=ppc32 -mcpu=g5 | grep vadduhm
|
|
; RUN: llc -verify-machineinstrs < %s -march=ppc32 -mcpu=g5 | grep vsubuhm
|
|
|
|
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>
|
|
}
|