[llvm] On AIX we don’t have .debug_addr section. (PR #96935)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 27 10:05:44 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-debuginfo
Author: Anh Tuyen Tran (anhtuyenibm)
<details>
<summary>Changes</summary>
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.
---
Full diff: https://github.com/llvm/llvm-project/pull/96935.diff
1 Files Affected:
- (modified) llvm/test/DebugInfo/attr-btf_type_tag.ll (+1-1)
``````````diff
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
``````````
</details>
https://github.com/llvm/llvm-project/pull/96935
More information about the llvm-commits
mailing list