diff options
author | Gadi Haber <gadi.haber@intel.com> | 2017-09-13 12:39:18 +0000 |
---|---|---|
committer | Gadi Haber <gadi.haber@intel.com> | 2017-09-13 12:39:18 +0000 |
commit | 35f4d7ca463903b3c12c1a00cdd1badb9ef2ca08 (patch) | |
tree | a544b498fefe2d27dce21aa469cd5b3d52a7b37a | |
parent | f613a45bf3583460d55c0a6fd4bc28d25eb52095 (diff) | |
download | bcm5719-llvm-35f4d7ca463903b3c12c1a00cdd1badb9ef2ca08.tar.gz bcm5719-llvm-35f4d7ca463903b3c12c1a00cdd1badb9ef2ca08.zip |
[X86][Skylake] Replacing -mcpu=skx by -mattr in a codegen test. NFC.
NFC.
Replacing -mcpu=skx by -mattr in the run command of the codegen test: avx512-gather-scatter-intrin.ll.
Reviewers: delena
Revision: https://reviews.llvm.org/D37799
llvm-svn: 313144
-rw-r--r-- | llvm/test/CodeGen/X86/avx512-gather-scatter-intrin.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/avx512-gather-scatter-intrin.ll b/llvm/test/CodeGen/X86/avx512-gather-scatter-intrin.ll index 3ae811ad946..7406dc514d3 100644 --- a/llvm/test/CodeGen/X86/avx512-gather-scatter-intrin.ll +++ b/llvm/test/CodeGen/X86/avx512-gather-scatter-intrin.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=skx | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=+avx512f,+avx512bw,+avx512vl,+avx512dq | FileCheck %s declare <16 x float> @llvm.x86.avx512.gather.dps.512 (<16 x float>, i8*, <16 x i32>, i16, i32) declare void @llvm.x86.avx512.scatter.dps.512 (i8*, i16, <16 x i32>, <16 x float>, i32) |