bug-binutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug gold/18327] Exception frame merging is broken in gold


From: rafael.espindola at gmail dot com
Subject: [Bug gold/18327] Exception frame merging is broken in gold
Date: Mon, 27 Apr 2015 13:24:51 +0000

https://sourceware.org/bugzilla/show_bug.cgi?id=18327

--- Comment #3 from Rafael Ávila de Espíndola <rafael.espindola at gmail dot 
com> ---
A small assembly testcase:

a.s:
---------------------
        .cfi_startproc
        .cfi_endproc
-----------------------
b.s:
--------------------------------------------------
        .cfi_startproc
        .cfi_personality 3, __gxx_personality_v0
        .cfi_endproc
        .cfi_startproc
        .cfi_endproc
---------------------------------------------------
c.s:
-----------------------------------------------------
        .globl  __gxx_personality_v0
        .type   __gxx_personality_v0,@function
__gxx_personality_v0:
------------------------------------------------------

gcc -c a.s
gcc -c b.s
gcc -c c.s
ld c.o -shared -o c.so

ld-new a.o b.o c.so -o t
ld-old a.o b.o c.so -o t2

t will be missing a relocation to __gxx_personality_v0

-- 
You are receiving this mail because:
You are on the CC list for the bug.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]