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/37917] inline functions are lost when defining c99/gnu99 without inline optimizations



------- Comment #1 from pinskia at gcc dot gnu dot org  2008-10-27 00:22 -------
This is correct behavior. C99 inline by itself is what GNU C90 calls extern
inline.  That is inline if it can be, otherwise don't emit code for the
function.  "extern inline" for C99 says always emit the function.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |INVALID


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


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