This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug regression/34970] name mangling broken for __attributte__((fastcall))



------- Comment #4 from Christoph_vW at reactos dot org  2008-01-25 10:10 -------
void __attribute__ ((fastcall)) test();

int main()
{
  test();
  return 0;
}

void __attribute__ ((fastcall)) test()
{
  return;
}



Results in .s file :

gcc 4.3.0  _@test@0
gcc 4.1.3  @test@0


-- 


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]