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 middle-end/18231] [4.0 regression] Nested inline function not inlined


------- Additional Comments From schwab at suse dot de  2004-10-30 18:52 -------
The testcase was simplified too much. 
 
int f (int i) 
{ 
  auto inline __attribute__ ((always_inline)) int h (int i) { return i; } 
  auto inline __attribute__ ((always_inline)) int g (void) { return h (i); } 
  return g (); 
} 
 

-- 


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


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