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 c/16666] [3.4/3.5 regression] compared to 3.3.x.


------- Additional Comments From kan at FreeBSD dot ORG  2004-07-22 03:34 -------
It has something to do with float in arguments. Floats are getting expanded 
before they are pushed on arguments stack and this is the condition which 
prevents simple cases like  
 
int foo(int a, int b); 
 
int 
foo(a, b) 
   int a, b; 
{ 
   .... 
} 
 
from failing. 

-- 


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


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