summaryrefslogtreecommitdiffstats
path: root/contrib/llvm/tools/clang/lib/Headers/fmaintrin.h
Commit message (Collapse)AuthorAgeFilesLines
* Import r243925 from the upstream clang release_37 branch:dim2015-08-181-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reverting r239883 and r240720: ------------------------------------------------------------------------ r239883 | echristo | 2015-06-17 00:09:32 -0700 (Wed, 17 Jun 2015) | 16 lines Update the intel intrinsic headers to use the target attribute support. This involved removing the conditional inclusion and replacing them with target attributes matching the original conditional inclusion and checks. The testcase update removes the macro checks for each file and replaces them with usage of the __target__ attribute, e.g.: int __attribute__((__target__(("sse3")))) foo(int a) { _mm_mwait(0, 0); return 4; } This usage does require the enclosing function have the requisite __target__ attribute for inlining and code generation - also for any macro intrinsic uses in the enclosing function. There's no change for existing uses of the intrinsic headers. ------------------------------------------------------------------------ ------------------------------------------------------------------------ r240720 | silvas | 2015-06-25 16:22:11 -0700 (Thu, 25 Jun 2015) | 6 lines Remove `requires` for x86 CPU features. Ever since the target attributes change, we don't need to guard these headers with `requires`. Actually it's a bit worse, because if we do then they are included textually under the covers, causing declarations to appear in submodules they aren't supposed to be in. ------------------------------------------------------------------------ This reverts the changes to the intrinsics headers in trunk, which could result in some ports' configure scripts misdetecting SSE (and higher) support.
* Update llvm/clang to r241361.dim2015-07-051-34/+34
|
* Update llvm/clang to r240225.dim2015-06-231-36/+35
|
* Upgrade our copy of llvm/clang to trunk r162107. With thanks todim2012-08-201-0/+229
Benjamin Kramer and Joerg Sonnenberger for their input and fixes.
OpenPOWER on IntegriCloud