Skip to content

Commit

Permalink
http: fix gcc 3.x build, don't use always_inline
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Oct 25, 2011
1 parent dddfd0f commit 680765a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/node_http_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,18 @@ static char* current_buffer_data;
static size_t current_buffer_len;


// gcc 3.x knows the always_inline attribute but fails at build time with a
// "sorry, unimplemented: inlining failed" error when compiling at -O0
#if defined(__GNUC__)
#define always_inline __attribute__((always_inline))
# if __GNUC__ >= 4
# define always_inline __attribute__((always_inline))
# else
# define always_inline inline
# endif
#elif defined(_MSC_VER)
#define always_inline __forceinline
# define always_inline __forceinline
#else
#define always_inline
# define always_inline
#endif


Expand Down

0 comments on commit 680765a

Please sign in to comment.