
The issue is uncovered by #47698: for IR files without a target triple, -mtriple= specifies the full target triple while -march= merely sets the architecture part of the default target triple, leaving a target triple which may not make sense, e.g. riscv64-apple-darwin. Therefore, -march= is error-prone and not recommended for tests without a target triple. The issue has been benign as we recognize $unknown-apple-darwin as ELF instead of rejecting it outrightly.
18 lines
346 B
LLVM
18 lines
346 B
LLVM
; RUN: llc -mtriple=hexagon -filetype=obj -ifcvt-limit=0 -o - %s | llvm-objdump --no-print-imm-hex -d - | FileCheck %s
|
|
|
|
; CHECK: p0 = cmp.gt(r0,#-1); if (!p0.new) jump:nt
|
|
|
|
declare void @a()
|
|
declare void @b()
|
|
|
|
define void @foo(i32 %a) {
|
|
%b = icmp sgt i32 %a, -1
|
|
br i1 %b, label %x, label %y
|
|
x:
|
|
call void @a()
|
|
ret void
|
|
y:
|
|
call void @b()
|
|
ret void
|
|
}
|