diff options
Diffstat (limited to 'lib/Target/TargetTransformImpl.cpp')
-rw-r--r-- | lib/Target/TargetTransformImpl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/TargetTransformImpl.cpp b/lib/Target/TargetTransformImpl.cpp index 3d640dc023..a320e16c98 100644 --- a/lib/Target/TargetTransformImpl.cpp +++ b/lib/Target/TargetTransformImpl.cpp @@ -208,7 +208,8 @@ unsigned VectorTargetTransformImpl::getArithmeticInstrCost(unsigned Opcode, return 1; } -unsigned VectorTargetTransformImpl::getBroadcastCost(Type *Tp) const { +unsigned VectorTargetTransformImpl::getShuffleCost(ShuffleKind Kind, + Type *Tp) const { return 1; } |