mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +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
21 lines
709 B
LLVM
21 lines
709 B
LLVM
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-apple-darwin 2>&1 | FileCheck %s --check-prefix=CHECK-DARWIN
|
|
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-apple-darwin 2>&1 | FileCheck %s --check-prefix=CHECK-DARWIN
|
|
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu 2>&1 | FileCheck %s
|
|
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu 2>&1 | FileCheck %s
|
|
|
|
define i32 @get_reg() nounwind {
|
|
entry:
|
|
%reg = call i32 @llvm.read_register.i32(metadata !0)
|
|
ret i32 %reg
|
|
|
|
; CHECK-LABEL: @get_reg
|
|
; CHECK: mr 3, 1
|
|
|
|
; CHECK-DARWIN-LABEL: @get_reg
|
|
; CHECK-DARWIN: mr r3, r1
|
|
}
|
|
|
|
declare i32 @llvm.read_register.i32(metadata) nounwind
|
|
|
|
!0 = !{!"r1\00"}
|