http://llvm.org/bugs/show_bug.cgi?id=22720
Richard Smith <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution|--- |INVALID --- Comment #1 from Richard Smith <[email protected]> --- Clang is following the C99 standard; your version of GCC is following the GNU inline semantics. Recent versions of GCC behave the same as Clang here. See http://clang.llvm.org/compatibility.html#inline One correct way of writing this is to use 'static inline' in the place of 'inline' here. -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
