------- Comment #3 from fxcoudert at gcc dot gnu dot org  2007-01-05 10:10 
-------
Confirmed as it has been reported by other people as well. I don't understand
enough of this name aliasing to understand the reason for this bug. Can you
confirm that the following is enough to trigger the bug? If that's the case,
then maybe a post to the gcc mailing-list would be a good thing.

extern void runtime_error (const char *) __attribute__ ((noreturn));
extern __typeof(runtime_error) runtime_error __asm__("_"
"_gfortrani_runtime_error") __attribute__((__visibility__("hidden")));

void
runtime_error (const char *message)
{
  ;
}
extern __typeof(runtime_error) _gfortran_runtime_error
__attribute__((__alias__("_" "_gfortrani_runtime_error")));


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2007-01-05 10:10:35
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30007

Reply via email to