mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
699d18eb82
Fix assert about using an undefined physical register in machine instruction verify pass. The reason is that register flag undef is missing when doing transformation from If Conversion Pass. ``` Bad machine code: Using an undefined physical register - function: func_65 - basic block: %bb.0 entry (0x10024740738) - instruction: BCLR killed $cr5lt, implicit $lr8, implicit $rm, implicit undef $x3 - operand 0: killed $cr5lt LLVM ERROR: Found 1 machine code errors. ``` There are also other existing testcases with same issue. So I add -verify-machineinstrs option to open verifying. Differential Revision: https://reviews.llvm.org/D55408 llvm-svn: 348566
24 lines
756 B
LLVM
24 lines
756 B
LLVM
; RUN: llc -mcpu=ppc32 -verify-machineinstrs < %s | FileCheck %s
|
|
target datalayout = "E-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32"
|
|
target triple = "powerpc-unknown-linux-gnu"
|
|
|
|
define void @fn1() {
|
|
entry:
|
|
br i1 undef, label %for.end, label %for.body
|
|
|
|
for.body: ; preds = %for.body, %entry
|
|
%inc3 = phi i64 [ %inc, %for.body ], [ undef, %entry ]
|
|
%inc = add nsw i64 %inc3, 1
|
|
%tobool = icmp eq i64 %inc, 0
|
|
br i1 %tobool, label %for.end, label %for.body
|
|
|
|
for.end: ; preds = %for.body, %entry
|
|
ret void
|
|
}
|
|
|
|
; On PPC32, CTR is also 32 bits, and so cannot hold a 64-bit count.
|
|
; CHECK: @fn1
|
|
; CHECK-NOT: mtctr
|
|
; CHECK: blr
|
|
|