On 20.02.2012 09:06, Chandler Carruth wrote:
Here is an initial cut at adding an MSVC compatible 'intrin.h' builtin header. I've left a FIXME to fill in the MS-specific intrinsics. This should at least provide a place to begin fleshing out the intrinsics.
+/* Unless we're compiling targeting MSVC platform, this header shouldn't even + **exist*. If there is a system header with the same name, defer to that, + * etherwise produce an error for the user. + */ +#ifndef _MSC_VER +# if defined(__has_inclued_next)&& __has_inclued_next(<intrin.h>) +# include_next<intrin.h> +# else +
s/inclued/include/ Sebastian
_______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
