diff options
author | Craig Topper <craig.topper@intel.com> | 2019-05-17 06:40:21 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2019-05-17 06:40:21 +0000 |
commit | ae1597d360d06214ff71814b5837565d42229265 (patch) | |
tree | 7ddd9c9dbcc22549d4c239f56141d9f17627df84 /llvm/lib | |
parent | b7804ef3a746cd6c2c95c81eb19a81fb9df34cc6 (diff) | |
download | bcm5719-llvm-ae1597d360d06214ff71814b5837565d42229265.tar.gz bcm5719-llvm-ae1597d360d06214ff71814b5837565d42229265.zip |
[X86] Add FeatureFastScalarShiftMasks and FeatureFastVectorShiftMasks to the ignore list for inlining compatibility.
These are tuning flags and won't cause any codegen issue if we inline a function
with a different value.
llvm-svn: 360992
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86TargetTransformInfo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86TargetTransformInfo.h b/llvm/lib/Target/X86/X86TargetTransformInfo.h index e9afa02e67b..351a4f22060 100644 --- a/llvm/lib/Target/X86/X86TargetTransformInfo.h +++ b/llvm/lib/Target/X86/X86TargetTransformInfo.h @@ -54,6 +54,8 @@ class X86TTIImpl : public BasicTTIImplBase<X86TTIImpl> { X86::FeatureFastPartialYMMorZMMWrite, X86::FeatureFastScalarFSQRT, X86::FeatureFastSHLDRotate, + X86::FeatureFastScalarShiftMasks, + X86::FeatureFastVectorShiftMasks, X86::FeatureFastVariableShuffle, X86::FeatureFastVectorFSQRT, X86::FeatureLEAForSP, |