4 /* GCC 3.4.6 will not compile inlined member template functions.
5 Let's assume GCC 4.x does */
8 #define INLINE inline __attribute__((always_inline))
19 static INLINE T
temp_member_func_b(T argb
) {
27 static /*INLINE*/ T
temp_member_func_noinline(T arga
) {
28 return temp_member_func_b(arga
);
36 result
= X::temp_member_func_noinline(result
);