aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetLowering.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-04-09 20:09:42 +0000
committerDan Gohman <gohman@apple.com>2008-04-09 20:09:42 +0000
commit7d8143f0ef35fccc98a624525b4517eb790e2d14 (patch)
treefd36655ce2549bb7d9a57190b89703acb3375255 /include/llvm/Target/TargetLowering.h
parent920c6828ee2a31b324e2b0a9d16e01574955485d (diff)
downloadexternal_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/llvm/Target/TargetLowering.h')
-rw-r--r--include/llvm/Target/TargetLowering.h2
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;