<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    On 20.02.2012 09:06, Chandler Carruth wrote:
    <blockquote
cite="mid:CAAwGriHwCcRsaEH2hBeYxC-=r1DLiH-SbPE15U7tXmT-vGsONA@mail.gmail.com"
      type="cite">
      <div class="gmail_quote">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.
      </div>
      <br>
    </blockquote>
    <br>
    <blockquote type="cite">
      <pre wrap="">+/* Unless we're compiling targeting MSVC platform, this header shouldn't even
+ * <b class="moz-txt-star"><span class="moz-txt-tag">*</span>exist<span class="moz-txt-tag">*</span></b>. 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
+</pre>
    </blockquote>
    s/inclued/include/<br>
    <br>
    Sebastian<br>
  </body>
</html>