summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-01-15 17:34:08 +0000
committerDan Gohman <gohman@apple.com>2009-01-15 17:34:08 +0000
commit0ad43ca6e521ef2246b71e6be3f3a1701f86c2d1 (patch)
tree1a233244935671bb05903bec6a514623e0e5f876 /llvm/lib
parentff716cb34227151b67f9ef604d8f726ce455ec8a (diff)
downloadbcm5719-llvm-0ad43ca6e521ef2246b71e6be3f3a1701f86c2d1.tar.gz
bcm5719-llvm-0ad43ca6e521ef2246b71e6be3f3a1701f86c2d1.zip
Make getWidenVectorType const.
llvm-svn: 62265
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/X86/X86ISelLowering.cpp2
-rw-r--r--llvm/lib/Target/X86/X86ISelLowering.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index 00405ab4f6a..9499a9de6cc 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -8036,7 +8036,7 @@ X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
/// When and where to widen is target dependent based on the cost of
/// scalarizing vs using the wider vector type.
-MVT X86TargetLowering::getWidenVectorType(MVT VT) {
+MVT X86TargetLowering::getWidenVectorType(MVT VT) const {
assert(VT.isVector());
if (isTypeLegal(VT))
return VT;
diff --git a/llvm/lib/Target/X86/X86ISelLowering.h b/llvm/lib/Target/X86/X86ISelLowering.h
index 46005d06947..ea9c9311692 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.h
+++ b/llvm/lib/Target/X86/X86ISelLowering.h
@@ -499,7 +499,7 @@ namespace llvm {
/// If there is no vector type that we want to widen to, returns MVT::Other
/// When and were to widen is target dependent based on the cost of
/// scalarizing vs using the wider vector type.
- virtual MVT getWidenVectorType(MVT VT);
+ virtual MVT getWidenVectorType(MVT VT) const;
/// createFastISel - This method returns a target specific FastISel object,
/// or null if the target does not support "fast" ISel.
OpenPOWER on IntegriCloud