aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-07 07:45:08 +0000
committerChris Lattner <sabre@nondot.org>2010-03-07 07:45:08 +0000
commitacee647b13d6e3e92cdbfe9657622a3daa2a6da1 (patch)
tree2b764867f8ffb6d4e432997b9a2b2fded0250025 /include
parent81d6d52592b928838d706e9fc5c9779de017d0d7 (diff)
downloadexternal_llvm-acee647b13d6e3e92cdbfe9657622a3daa2a6da1.zip
external_llvm-acee647b13d6e3e92cdbfe9657622a3daa2a6da1.tar.gz
external_llvm-acee647b13d6e3e92cdbfe9657622a3daa2a6da1.tar.bz2
Use Other as a sentinel instead of iAny.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97914 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetLowering.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index 60b7ebd..5bc1c0e 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -664,12 +664,12 @@ public:
/// getOptimalMemOpType - Returns the target specific optimal type for load
/// and store operations as a result of memset, memcpy, and memmove lowering.
- /// It returns EVT::iAny if SelectionDAG should be responsible for
+ /// It returns EVT::Other if SelectionDAG should be responsible for
/// determining it.
virtual EVT getOptimalMemOpType(uint64_t Size, unsigned Align,
bool isSrcConst, bool isSrcStr,
SelectionDAG &DAG) const {
- return MVT::iAny;
+ return MVT::Other;
}
/// usesUnderscoreSetJmp - Determine if we should use _setjmp or setjmp