diff options
author | Nico Weber <nicolasweber@gmx.de> | 2014-03-05 20:18:59 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2014-03-05 20:18:59 +0000 |
commit | fcf6128c71c5296743dfb23eae225ad7f0876211 (patch) | |
tree | b8459242700e3c794817b7aef0d80618882abe7e | |
parent | 8377085657a66f67b1796fb06252c0c5585ff051 (diff) | |
download | bcm5719-llvm-fcf6128c71c5296743dfb23eae225ad7f0876211.tar.gz bcm5719-llvm-fcf6128c71c5296743dfb23eae225ad7f0876211.zip |
Mention clang-cl in MSVCCompatibility.rst
llvm-svn: 203002
-rw-r--r-- | clang/docs/MSVCCompatibility.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/docs/MSVCCompatibility.rst b/clang/docs/MSVCCompatibility.rst index 879bb3de163..683ce937b45 100644 --- a/clang/docs/MSVCCompatibility.rst +++ b/clang/docs/MSVCCompatibility.rst @@ -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 ============ |