mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 15:39:00 +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
18 lines
601 B
LLVM
18 lines
601 B
LLVM
; RUN: llc -verify-machineinstrs < %s -march=ppc32 | not grep mfcr
|
|
|
|
define void @foo(i32 %X, i32 %Y, i32 %Z) {
|
|
entry:
|
|
%tmp = icmp eq i32 %X, 0 ; <i1> [#uses=1]
|
|
%tmp3 = icmp slt i32 %Y, 5 ; <i1> [#uses=1]
|
|
%tmp4 = and i1 %tmp3, %tmp ; <i1> [#uses=1]
|
|
br i1 %tmp4, label %cond_true, label %UnifiedReturnBlock
|
|
cond_true: ; preds = %entry
|
|
%tmp5 = tail call i32 (...) @bar( ) ; <i32> [#uses=0]
|
|
ret void
|
|
UnifiedReturnBlock: ; preds = %entry
|
|
ret void
|
|
}
|
|
|
|
declare i32 @bar(...)
|
|
|