From: Hal Finkel Date: Thu, 3 Jan 2013 01:50:51 +0000 (+0000) Subject: Add a default Index for VTTI::getShuffleCost X-Git-Tag: android-x86-6.0-r1~179^2~198 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=467fa3ea7fc87cef33b603fc3699b888f513aded;p=android-x86%2Fexternal-llvm.git Add a default Index for VTTI::getShuffleCost When Kind == (Broadcast or Reverse) then Index is not used; make it an optional parameter. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171447 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/TargetTransformInfo.h b/include/llvm/TargetTransformInfo.h index a446c7b9716..6336afcffe8 100644 --- a/include/llvm/TargetTransformInfo.h +++ b/include/llvm/TargetTransformInfo.h @@ -173,7 +173,7 @@ public: /// The index parameter is used by some of the shuffle kinds to add /// additional information. virtual unsigned getShuffleCost(ShuffleKind Kind, Type *Tp, - int Index) const { + int Index = 0) const { return 1; }