mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-09 05:31:19 +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
31 lines
952 B
LLVM
31 lines
952 B
LLVM
; RUN: llc -verify-machineinstrs -O0 -mcpu=e500mc < %s | FileCheck %s
|
|
; Check if e500 generates code with mfocrf insn.
|
|
|
|
target datalayout = "E-m:e-p:32:32-i64:64-n32"
|
|
target triple = "powerpc-unknown-linux-gnu"
|
|
|
|
define internal i32 @func_49(i64 %p_50, i16 zeroext %p_51, i8* %p_52, i32 %p_53) {
|
|
; CHECK-LABEL: @func_49
|
|
; CHECK-NOT: mfocrf
|
|
|
|
%1 = load i64, i64* undef, align 8
|
|
%2 = load i64, i64* undef, align 8
|
|
%3 = icmp sge i32 undef, undef
|
|
%4 = zext i1 %3 to i32
|
|
%5 = sext i32 %4 to i64
|
|
%6 = icmp slt i64 %2, %5
|
|
%7 = zext i1 %6 to i32
|
|
%8 = call i64 @safe_sub_func_int64_t_s_s(i64 -6372137293439783564, i64 undef)
|
|
%9 = icmp slt i32 %7, undef
|
|
%10 = zext i1 %9 to i32
|
|
%11 = sext i32 %10 to i64
|
|
%12 = icmp sle i64 %1, %11
|
|
%13 = zext i1 %12 to i32
|
|
%14 = call i32 @safe_add_func_int32_t_s_s(i32 undef, i32 %13)
|
|
ret i32 undef
|
|
}
|
|
|
|
declare i32 @safe_add_func_int32_t_s_s(i32, i32)
|
|
|
|
declare i64 @safe_sub_func_int64_t_s_s(i64, i64)
|