aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorIain Sandoe <iain@sandoe.co.uk>2023-10-01 20:38:44 +0100
committerIain Sandoe <iain@sandoe.co.uk>2023-10-02 07:58:43 +0100
commit76547f4c97b1c0744487d624c5e2e5a15d0370a9 (patch)
treebb94d7bc5bf1f2b11eb78089ea8420755c129177 /gcc
parente465e5e4a969334f64cf0d6611de5273d73ea732 (diff)
downloadgcc-76547f4c97b1c0744487d624c5e2e5a15d0370a9.zip
gcc-76547f4c97b1c0744487d624c5e2e5a15d0370a9.tar.gz
gcc-76547f4c97b1c0744487d624c5e2e5a15d0370a9.tar.bz2
testsuite, Darwin: Skip g++.dg/debug/dwarf2/pr85550.C
There are two problems here; first that the emitted asm for -fdebug-types-section is ELF-specfic leading to assembler errors for Mach-O. If we fix this, we get a secondary fail since the debug linker does not recognise DW_FORM_ref_sig8. Disable ths test until we get DWARF-5 support in the external Darwin toolchain components. gcc/testsuite/ChangeLog: * g++.dg/debug/dwarf2/pr85550.C: Skip for Darwin. Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.dg/debug/dwarf2/pr85550.C1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/debug/dwarf2/pr85550.C b/gcc/testsuite/g++.dg/debug/dwarf2/pr85550.C
index 35b0f56..c95f752 100644
--- a/gcc/testsuite/g++.dg/debug/dwarf2/pr85550.C
+++ b/gcc/testsuite/g++.dg/debug/dwarf2/pr85550.C
@@ -2,6 +2,7 @@
// { dg-do link }
// { dg-options "-O2 -g -fdebug-types-section" }
// { dg-skip-if "AIX DWARF5" { powerpc-ibm-aix* } }
+// { dg-skip-if "No debug linker support" { *-*-darwin* } }
struct A {
int bar () const { return 0; }