mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 23:48:49 +00:00
38caf19333
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277624 91177308-0d34-0410-b5e6-96231b3b80d8
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
|