mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +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
16 lines
379 B
LLVM
16 lines
379 B
LLVM
; RUN: llc -verify-machineinstrs -mcpu=pwr8 -mtriple=powerpc-unknown-unknown < %s | FileCheck %s
|
|
define i32 @test(<4 x i32> %v, i32 %elem) #0 {
|
|
entry:
|
|
%vecext = extractelement <4 x i32> %v, i32 %elem
|
|
ret i32 %vecext
|
|
}
|
|
; CHECK: stxvw4x 34,
|
|
; CHECK: lwzx 3,
|
|
|
|
define float @test2(i32 signext %a) {
|
|
entry:
|
|
%conv = bitcast i32 %a to float
|
|
ret float %conv
|
|
}
|
|
; CHECK-NOT: mtvsr
|