--- Additional Comments From niki dot waibel at gmx dot net 2009-09-17
19:23 ---
same issue on i386-pc-solaris2.10!!!
will upload libC.so.3 and libCso.5 from solaris10/x86.
===
$ uname -a
SunOS x4150-1 5.10 Generic_139556-08 i86pc i386 i86pc Solaris
$ size /usr/lib/libC.so.*
textd
--- Additional Comments From niki dot waibel at gmx dot net 2009-09-17
19:27 ---
Created an attachment (id=4201)
--> (http://sourceware.org/bugzilla/attachment.cgi?id=4201&action=view)
sol10/x86 okay
--
http://sourceware.org/bugzilla/show_bug.cgi?id=10478
--- You are receiving
--- Additional Comments From niki dot waibel at gmx dot net 2009-09-17
19:30 ---
Created an attachment (id=4202)
--> (http://sourceware.org/bugzilla/attachment.cgi?id=4202&action=view)
sol10/x86 not okay
--
http://sourceware.org/bugzilla/show_bug.cgi?id=10478
--- You are recei
The following simple test case shows a problem with inlined code in addr2line
(running on x86_64/Linux):
$ cat foo.cc
#include
void __attribute__((always_inline)) bar() {
printf ("Hello World\n"); // line 4
}
void __attribute__((always_inline)) foo() {
bar();
bar();
}
int main() {
foo(