diff options
author | Dan Gohman <gohman@apple.com> | 2008-04-09 20:09:42 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-04-09 20:09:42 +0000 |
commit | 7d8143f0ef35fccc98a624525b4517eb790e2d14 (patch) | |
tree | fd36655ce2549bb7d9a57190b89703acb3375255 /include | |
parent | 920c6828ee2a31b324e2b0a9d16e01574955485d (diff) | |
download | external_llvm-7d8143f0ef35fccc98a624525b4517eb790e2d14.zip external_llvm-7d8143f0ef35fccc98a624525b4517eb790e2d14.tar.gz external_llvm-7d8143f0ef35fccc98a624525b4517eb790e2d14.tar.bz2 |
Make isVectorClearMaskLegal's operand list const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49446 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index 05e2c85..719f719 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -268,7 +268,7 @@ public: /// used by Targets can use this to indicate if there is a suitable /// VECTOR_SHUFFLE that can be used to replace a VAND with a constant /// pool entry. - virtual bool isVectorClearMaskLegal(std::vector<SDOperand> &BVOps, + virtual bool isVectorClearMaskLegal(const std::vector<SDOperand> &BVOps, MVT::ValueType EVT, SelectionDAG &DAG) const { return false; |