Kai Nacke 427fb35192 [PPC] Opaque pointer migration, part 1.
The LIT test cases were migrated with the script provided by
Nikita Popov. Due to the size of the change it is split into
several parts.

Reviewed By: nemanja, amyk, nikic, PowerPC

Differential Revision: https://reviews.llvm.org/D135470
2022-10-11 17:24:06 +00:00

42 lines
918 B
LLVM

; XFAIL: *
; RUN: llc -verify-machineinstrs -mcpu=pwr7 < %s | FileCheck %s
target datalayout = "E-m:e-i64:64-n32:64"
target triple = "powerpc64-unknown-linux-gnu"
; Function Attrs: nounwind
define void @foo(i32 signext %a, i32 signext %b) #0 {
entry:
%cmp = icmp sgt i32 %a, 5
%cmp1 = icmp slt i32 %b, 3
%or.cond = or i1 %cmp, %cmp1
br i1 %or.cond, label %if.then, label %if.else
; CHECK-LABEL: @foo
; CHECK: li
; CHECK: li
; CHECK: sub
; CHECK: sub
; CHECK: rldicl
; CHECK: rldicl
; CHECK: or.
; CHECK: blr
if.then: ; preds = %entry
tail call void @bar() #0
br label %if.end
if.else: ; preds = %entry
tail call void @car() #0
br label %if.end
if.end: ; preds = %if.else, %if.then
ret void
}
declare void @bar(...)
declare void @car(...)
attributes #0 = { nounwind }