1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[X86] Remove FeatureSSE3 from the implies list of HasFastHorizontalOps.

HasFastHorizontalOps is a tuning flag. It shouldn't imply an ISA flag.
This commit is contained in:
Craig Topper 2019-11-01 23:17:23 -07:00
parent 1ef0965005
commit 75ba60d523

View File

@ -443,7 +443,7 @@ def FeatureFastHorizontalOps
: SubtargetFeature<
"fast-hops", "HasFastHorizontalOps", "true",
"Prefer horizontal vector math instructions (haddp, phsub, etc.) over "
"normal vector instructions with shuffles", [FeatureSSE3]>;
"normal vector instructions with shuffles">;
def FeatureFastScalarShiftMasks
: SubtargetFeature<