Mention clang-cl in MSVCCompatibility.rst

llvm-svn: 203002
This commit is contained in:
Nico Weber 2014-03-05 20:18:59 +00:00
parent 8377085657
commit fcf6128c71
1 changed files with 4 additions and 1 deletions

View File

@ -28,13 +28,16 @@ Second, Clang implements many MSVC language extensions, such as
``__declspec(dllexport)`` and a handful of pragmas. These are typically
controlled by ``-fms-extensions``.
Finally, MSVC accepts some C++ code that Clang will typically diagnose as
Third, MSVC accepts some C++ code that Clang will typically diagnose as
invalid. When these constructs are present in widely included system headers,
Clang attempts to recover and continue compiling the user's program. Most
parsing and semantic compatibility tweaks are controlled by
``-fms-compatibility`` and ``-fdelayed-template-parsing``, and they are a work
in progress.
Finally, there is :ref:`clang-cl`, a driver program for clang that attempts to
be compatible with MSVC's cl.exe.
ABI features
============