From 9fa6eaaf837ca3a7326c904a7ec4e5a5bdfb0b5f Mon Sep 17 00:00:00 2001 From: Carlos Alberto Enciso Date: Thu, 19 Feb 2026 16:31:59 +0000 Subject: [PATCH] [clang][DebugInfo] Add virtuality call-site target information in DWARF. (#182311) Add missing 'REQUIRES: x86-registered-target' to fix buildbot failure: https://lab.llvm.org/buildbot/#/builders/190/builds/36803 --- .../debuginfo-tests/clang_llvm_roundtrip/callsite-dwarf.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/callsite-dwarf.cpp b/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/callsite-dwarf.cpp index b2b2eae95c80..8b4ddf542ddb 100644 --- a/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/callsite-dwarf.cpp +++ b/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/callsite-dwarf.cpp @@ -1,4 +1,5 @@ -// RUN: %clang --target=x86_64-unknown-linux -c -g -O1 %s -o - | \ +// REQUIRES: x86-registered-target +// RUN: %clang --target=x86_64-linux -c -g -O1 %s -o - | \ // RUN: llvm-dwarfdump --debug-info - | FileCheck %s --check-prefix=CHECK // Simple base and derived class with virtual: