mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-10 14:36:01 +00:00
![Ehsan Amiri](/assets/img/avatar_default.png)
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
17 lines
346 B
LLVM
17 lines
346 B
LLVM
; RUN: llc -verify-machineinstrs < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 | FileCheck %s
|
|
|
|
define i32 @test(i32 %x) nounwind {
|
|
; CHECK-LABEL: @test
|
|
; CHECK: cmpwi r3, -1
|
|
|
|
%c = icmp eq i32 %x, -1
|
|
br i1 %c, label %T, label %F
|
|
T:
|
|
%A = call i32 @test(i32 123)
|
|
%B = add i32 %A, 43
|
|
ret i32 %B
|
|
F:
|
|
%G = add i32 %x, 1234
|
|
ret i32 %G
|
|
}
|