http://sourceware.org/bugzilla/show_bug.cgi?id=12760

--- Comment #8 from H.J. Lu <hjl.tools at gmail dot com> 2011-05-16 14:01:01 
UTC ---
(In reply to comment #7)
> modified bar.c testing other warning sym cases
> 
> #define linker_warning(x, msg) \
>     asm(".section .gnu.warning." #x "\n\t.previous"); \
>     static const char __warn_##x[] \
>     __attribute__((used, section(".gnu.warning." #x "\n\t#"))) \
>     = msg

There is a typo in linker_warning. Please change it to

#define linker_warning(x, msg) \
    static const char __warn_##x[] \
    __attribute__((used, section(".gnu.warning." #x))) \
    = msg

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

_______________________________________________
bug-binutils mailing list
bug-binutils@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-binutils

Reply via email to