Author: zvi
Date: Mon Jul 10 00:13:56 2017
New Revision: 307524
URL: http://llvm.org/viewvc/llvm-project?rev=307524&view=rev
Log:
X86 Intrinsics: _bit_scan_forward should not be under #ifdef __RDRND__
Summary:
The _bit_scan_forward and _bit_scan_reverse intrinsics were accidentally
masked under t
zvi added inline comments.
Comment at: lib/Basic/Targets.cpp:3353
setSSELevel(Features, AVX512F, Enabled);
+// Enable BWI instruction is VBMI is being enabled.
+if (Name == "avx512vbmi" && Enabled)
is -> if
Comment at: test/Prepr
zvi accepted this revision.
zvi added a comment.
This revision is now accepted and ready to land.
LGTM
https://reviews.llvm.org/D26306
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: zvi
Date: Sat Jun 18 15:01:07 2016
New Revision: 273095
URL: http://llvm.org/viewvc/llvm-project?rev=273095&view=rev
Log:
[X86] _MM_ALIGN16 attribute support for non-windows targets
Summary:
This patch adds support for the _MM_ALIGN16 attribute on non-windows targets.
This aligns Clang
zvi updated this revision to Diff 60217.
zvi added a comment.
Following David Majnemer's suggestion on cfe-commits: I would just use the
__attribute__ spelling, no need for two definitions
Repository:
rL LLVM
http://reviews.llvm.org/D21173
Files:
lib/Headers/xmmintrin.h
test/Headers/xmm
zvi created this revision.
zvi added reviewers: aaboud, mkuper, echristo, cfe-commits.
zvi set the repository for this revision to rL LLVM.
zvi added a project: clang-c.
Herald added a subscriber: mehdi_amini.
This patch adds support for the _MM_ALIGN16 attribute on non-windows targets.
This alig