[llvm] aa9bf71 - On AIX we don’t have .debug_addr section. (#96935)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 27 10:31:18 PDT 2024
Author: Anh Tuyen Tran
Date: 2024-06-27T13:31:15-04:00
New Revision: aa9bf71ca4eac50f4dfad9bb7b302491265cb889
URL: https://github.com/llvm/llvm-project/commit/aa9bf71ca4eac50f4dfad9bb7b302491265cb889
DIFF: https://github.com/llvm/llvm-project/commit/aa9bf71ca4eac50f4dfad9bb7b302491265cb889.diff
LOG: On AIX we don’t have .debug_addr section. (#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.
Added:
Modified:
llvm/test/DebugInfo/attr-btf_type_tag.ll
Removed:
################################################################################
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