https://gcc.gnu.org/g:e6470a44a2543623613161e15da63ad89702ba14

commit r16-6730-ge6470a44a2543623613161e15da63ad89702ba14
Author: H.J. Lu <[email protected]>
Date:   Tue Jan 13 11:17:57 2026 +0800

    pr122458.c: Replace .quad with .dc.a
    
    Replace .quad with .dc.a to avoid
    
    /export/build/gnu/tools-build/gcc/build-x86_64-linux/gcc/xgcc 
-B/export/build/gnu/tools-build/gcc/build-x86_64-linux/gcc/ 
/export/gnu/import/git/sources/gcc/gcc/testsuite/gcc.dg/ipa/pr122458.c -m32 
-fdiagnostics-plain-output -O2 -lm -o pr122458.exe
    /usr/local/bin/as: /tmp/cc9Bw0pX.o: unsupported relocation type: 0x1
    /tmp/ccGrIiOC.s: Assembler messages:
    /tmp/ccGrIiOC.s:4: Error: cannot represent relocation type BFD_RELOC_64
    compiler exited with status 1
    FAIL: gcc.dg/ipa/pr122458.c (test for excess errors)
    
    for 32-bit targets.
    
            PR ipa/122458
            * gcc.dg/ipa/pr122458.c: Replace .quad with .dc.a.
    
    Signed-off-by: H.J. Lu <[email protected]>

Diff:
---
 gcc/testsuite/gcc.dg/ipa/pr122458.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/testsuite/gcc.dg/ipa/pr122458.c 
b/gcc/testsuite/gcc.dg/ipa/pr122458.c
index bec608ad4865..b4ed390cea78 100644
--- a/gcc/testsuite/gcc.dg/ipa/pr122458.c
+++ b/gcc/testsuite/gcc.dg/ipa/pr122458.c
@@ -4,6 +4,6 @@
 
 static int foo (void) { return 0; };
 
-asm (".quad %c0" :: "i" (foo));
+asm (".dc.a %c0" :: "i" (foo));
 
 int main() {}

Reply via email to