
Similar to 806761a7629df268c8aed49657aeccffa6bca449. 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. amdgpu-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. This patch changes AMDGPU tests to not rely on the default OS/environment components. Tests that need fixes are not changed: ``` LLVM :: CodeGen/AMDGPU/fabs.f64.ll LLVM :: CodeGen/AMDGPU/fabs.ll LLVM :: CodeGen/AMDGPU/floor.ll LLVM :: CodeGen/AMDGPU/fneg-fabs.f64.ll LLVM :: CodeGen/AMDGPU/fneg-fabs.ll LLVM :: CodeGen/AMDGPU/r600-infinite-loop-bug-while-reorganizing-vector.ll LLVM :: CodeGen/AMDGPU/schedule-if-2.ll ```
21 lines
761 B
LLVM
21 lines
761 B
LLVM
; RUN: llc -mtriple=amdgcn -mcpu=gfx900 -verify-machineinstrs < %s | FileCheck -enable-var-scope -check-prefixes=GCN,GFX9 %s
|
|
|
|
; Make sure reduceBuildVecExtToExtBuildVec combine doesn't regress
|
|
|
|
; code with legal v4i16. The v4i16 build_vector it produces will be
|
|
; custom lowered into an i32 based build_vector, producing a mess that
|
|
; nothing manages to put back together.
|
|
|
|
; GCN-LABEL: {{^}}v2i16_to_i64:
|
|
; GFX9: s_waitcnt
|
|
; GFX9-NEXT: v_pk_add_u16 v1, v0, v1
|
|
; GFX9-NEXT: v_and_b32_e32 v0, 0xffff, v1
|
|
; GFX9-NEXT: v_lshrrev_b32_e32 v1, 16, v1
|
|
; GFX9-NEXT: s_setpc_b64
|
|
define i64 @v2i16_to_i64(<2 x i16> %x, <2 x i16> %y) {
|
|
%x.add = add <2 x i16> %x, %y
|
|
%zext = zext <2 x i16> %x.add to <2 x i32>
|
|
%arst = bitcast <2 x i32> %zext to i64
|
|
ret i64 %arst
|
|
}
|