--- Additional Comments From cvs-commit at gcc dot gnu dot org 2009-09-21
19:12 ---
Subject: Bug 10681
CVSROOT:/cvs/src
Module name:src
Changes by: rsand...@sourceware.org 2009-09-21 19:11:50
Modified files:
ld/testsuite/ld-elf: eh6.d
ld/testsuite : C
--- Additional Comments From hjl dot tools at gmail dot com 2009-09-21
16:25 ---
It also failed on Linux/ia32:
regexp_diff match failure
regexp "^ Augmentation data: 80 .* 1b$"
line " Augmentation data: 90 1a 10 00 00 1b"
FAIL: ld-elf/eh6
--
http://sourceware.org/bugzi
--- Additional Comments From hjl dot tools at gmail dot com 2009-09-21
16:15 ---
It is caused by
http://sourceware.org/ml/binutils-cvs/2009-09/msg00238.html
--
What|Removed |Added
--
On Linux/x86-64, as of Mon Sep 21 09:10:30 PDT 2009, I got
regexp_diff match failure
regexp "^ Augmentation data: 80 .* 1b$"
line " Augmentation data: 90 26 00 20 00 00 00 00 00 1b"
FAIL: ld-elf/eh6
--
Summary: [Regression] FAIL: ld-elf/eh6
Product: binutils
--- Additional Comments From niki dot waibel at gmx dot net 2009-09-21
15:52 ---
any idea related to this? it should be as easy to fix as for solaris/sparc ...
--
http://sourceware.org/bugzilla/show_bug.cgi?id=10478
--- You are receiving this mail because: ---
You are on the
This problem only occurs on x86_64, not i686.
Example code (a.c):
#include
extern void my_asm_func(void);
asm(".text\n" \
"my_asm_func:\n" \
" mov 1234,%rax\n" \
" ret\n" \
".previous\n");
int my_c_func() { return 1; }
int main()
{
void *fred;
fred=(void *)my_asm_fun