mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +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
476 B
LLVM
21 lines
476 B
LLVM
target datalayout = "E-m:e-p:32:32-i64:64-n32"
|
|
target triple = "powerpc"
|
|
; RUN: llc -verify-machineinstrs -mcpu=ppc < %s | FileCheck %s
|
|
; RUN: llc -verify-machineinstrs -mcpu=pwr7 < %s | FileCheck %s
|
|
|
|
define i64 @test1() nounwind {
|
|
entry:
|
|
%r = call i64 @llvm.readcyclecounter()
|
|
ret i64 %r
|
|
}
|
|
|
|
; CHECK: @test1
|
|
; CHECK: mfspr 3, 269
|
|
; CHECK: mfspr 4, 268
|
|
; CHECK: mfspr [[REG:[0-9]+]], 269
|
|
; CHECK: cmpw 3, [[REG]]
|
|
; CHECK: bne 0, .LBB
|
|
|
|
declare i64 @llvm.readcyclecounter()
|
|
|