[llvm] On AIX we don’t have .debug_addr section. (PR #96935)
Anh Tuyen Tran via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 27 10:05:15 PDT 2024
https://github.com/anhtuyenibm created https://github.com/llvm/llvm-project/pull/96935
According to Zheng @chenzheng1030, there is no .debug_addr section on AIX.
Due to its absence on AIX, the test case may produce inconsistent results, either passing or failing. This PR ensures that the test case is marked as not applicable for AIX.
>From 077408b339fdf729dd02ccdbef612839a211f455 Mon Sep 17 00:00:00 2001
From: Anh Tuyen Tran <anhtuyen at ca.ibm.com>
Date: Thu, 27 Jun 2024 12:58:58 -0400
Subject: [PATCH] =?UTF-8?q?As=20per=20Zheng=20Chen,=20on=20AIX=20we=20don?=
=?UTF-8?q?=E2=80=99t=20have=20.debug=5Faddr=20section.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
llvm/test/DebugInfo/attr-btf_type_tag.ll | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/test/DebugInfo/attr-btf_type_tag.ll b/llvm/test/DebugInfo/attr-btf_type_tag.ll
index df6c86e0b4296..ffdef06bb2dc4 100644
--- a/llvm/test/DebugInfo/attr-btf_type_tag.ll
+++ b/llvm/test/DebugInfo/attr-btf_type_tag.ll
@@ -1,4 +1,4 @@
-; XFAIL: target={{.*}}-aix{{.*}}
+; UNSUPPORTED: target={{.*}}-aix{{.*}}
; REQUIRES: object-emission
; RUN: llc -filetype=obj -o %t %s
; RUN: llvm-dwarfdump -debug-info %t | FileCheck %s
More information about the llvm-commits
mailing list