From: Michael Wong Date: Wed, 27 Aug 2014 19:22:48 +0000 (+0000) Subject: updated with clang openmp notes by Michael Wong X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=384e4fd4d6259b77e7b3897cc8fb5a23d4532a19;p=clang updated with clang openmp notes by Michael Wong git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_35@216578 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst index f12d71ceec..15359d4167 100644 --- a/docs/ReleaseNotes.rst +++ b/docs/ReleaseNotes.rst @@ -55,7 +55,16 @@ Major New Features would return true when the attribute spelling was known, regardless of whether the attribute was available to the specific target. Clang now returns true only when the attribute pertains to the current compilation target. - + +- Clang 3.5 now has parsing and semantic-analysis support for all OpenMP 3.1 + pragmas (except atomics and ordered). LLVM's OpenMP runtime library, + originally developed by Intel, has been modified to work on ARM, PowerPC, + as well as X86. Code generation support is minimal at this point and will + continue to be developed for 3.6, along with the rest of OpenMP 3.1. + Support for OpenMP 4.0 features, such as SIMD and target accelerator + directives, is also in progress. Contributors to this work include AMD, + Argonne National Lab., IBM, Intel, Texas Instruments, University of Houston + and many others. Improvements to Clang's diagnostics ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -208,6 +217,13 @@ OpenCL C Language Changes in Clang ... +OpenMP C/C++ Language Changes in Clang +-------------------------------------- + +- `Status of supported OpenMP constructs + `_. + + Internal API Changes --------------------