Author: Matt Arsenault Date: 2026-06-26T14:26:39Z New Revision: e3e7ec49e49b1fa7d2ebf40f44e369f2f7eff65a
URL: https://github.com/llvm/llvm-project/commit/e3e7ec49e49b1fa7d2ebf40f44e369f2f7eff65a DIFF: https://github.com/llvm/llvm-project/commit/e3e7ec49e49b1fa7d2ebf40f44e369f2f7eff65a.diff LOG: AMDGPU: Fix typos in test triple OS components (#206065) Co-Authored-By: Claude <[email protected]> Added: Modified: clang/test/DebugInfo/Generic/bitfield-0-struct.c clang/test/SemaSYCL/sycl-cconv-win.cpp llvm/test/CodeGen/AMDGPU/GlobalISel/shufflevector.ll Removed: ################################################################################ diff --git a/clang/test/DebugInfo/Generic/bitfield-0-struct.c b/clang/test/DebugInfo/Generic/bitfield-0-struct.c index 9fadf898e3466..cdc4de6aa071c 100644 --- a/clang/test/DebugInfo/Generic/bitfield-0-struct.c +++ b/clang/test/DebugInfo/Generic/bitfield-0-struct.c @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -triple x86_64-unk-unk -o - -emit-llvm -debug-info-kind=limited %s | FileCheck --check-prefixes NOSEPARATOR,BOTH %s -// RUN: %clang_cc1 -triple amdgcn-unk-unk -o - -emit-llvm -debug-info-kind=limited %s | FileCheck --check-prefixes SEPARATOR,BOTH %s +// RUN: %clang_cc1 -triple amdgcn-unknown-unknown -o - -emit-llvm -debug-info-kind=limited %s | FileCheck --check-prefixes SEPARATOR,BOTH %s struct First { // BOTH-DAG: ![[FIRST:[0-9]+]] = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "First", file: !{{[0-9]+}}, line: {{[0-9]+}}, size: 32, elements: ![[FIRST_ELEMENTS:[0-9]+]]) diff --git a/clang/test/SemaSYCL/sycl-cconv-win.cpp b/clang/test/SemaSYCL/sycl-cconv-win.cpp index f0c22a2ed3921..c95a870e3fb50 100644 --- a/clang/test/SemaSYCL/sycl-cconv-win.cpp +++ b/clang/test/SemaSYCL/sycl-cconv-win.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -isystem %S/Inputs/ -fsycl-is-device -triple amdgcn-amd-hsa -aux-triple x86_64-pc-windows-msvc -fsyntax-only -verify %s +// RUN: %clang_cc1 -isystem %S/Inputs/ -fsycl-is-device -triple amdgcn-amd-amdhsa -aux-triple x86_64-pc-windows-msvc -fsyntax-only -verify %s // expected-no-diagnostics diff --git a/llvm/test/CodeGen/AMDGPU/GlobalISel/shufflevector.ll b/llvm/test/CodeGen/AMDGPU/GlobalISel/shufflevector.ll index a247a2172db2b..29309b4242b8a 100644 --- a/llvm/test/CodeGen/AMDGPU/GlobalISel/shufflevector.ll +++ b/llvm/test/CodeGen/AMDGPU/GlobalISel/shufflevector.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -global-isel -mtriple=amdgcn -mtriple=amdgcn-amd-hmcsa -mcpu=gfx942 < %s | FileCheck -check-prefix=GFX942 %s +; RUN: llc -global-isel -mtriple=amdgcn-amd-amdhsa -mcpu=gfx942 < %s | FileCheck -check-prefix=GFX942 %s define void @shuffle_to_extract(ptr addrspace(3) %in, ptr addrspace(3) %out) { ; GFX942-LABEL: shuffle_to_extract: _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
