mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-17 10:55:58 +00:00

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
12 lines
233 B
LLVM
12 lines
233 B
LLVM
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-apple-darwin8 | not grep slwi
|
|
|
|
define i32 @test(i32 %A, i32 %B) {
|
|
%C = sub i32 %B, %A
|
|
%D = icmp eq i32 %C, %A
|
|
br i1 %D, label %T, label %F
|
|
T:
|
|
ret i32 19123
|
|
F:
|
|
ret i32 %C
|
|
}
|