Fangrui Song 806761a762 [test] Change llc -march= to -mtriple=
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.
2023-09-11 14:42:37 -07:00

18 lines
574 B
LLVM

; RUN: llc < %s -mtriple=r600 -mcpu=redwood -filetype=obj | llvm-readobj -S - | FileCheck --check-prefix=ELF %s
; RUN: llc < %s -mtriple=r600 -mcpu=redwood -o - | FileCheck --check-prefix=CONFIG %s
; ELF: Format: elf32-amdgpu
; ELF: Name: .AMDGPU.config
; CONFIG: .section .AMDGPU.config
; CONFIG-NEXT: .long 166100
; CONFIG-NEXT: .long 2
; CONFIG-NEXT: .long 165900
; CONFIG-NEXT: .long 0
define amdgpu_kernel void @test(ptr addrspace(1) %out, i32 %p) {
%i = add i32 %p, 2
%r = bitcast i32 %i to float
store float %r, ptr addrspace(1) %out
ret void
}