summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2011-10-26 23:50:43 +0000
committerLang Hames <lhames@gmail.com>2011-10-26 23:50:43 +0000
commit15701f8969fcb36899a75ca2df6fdcbc52141106 (patch)
tree05f68e928be1ad9b1e5f9b2438438ac2303c8a45 /include
parent8ff2664f2f3f4f5dbd847f94352ffc8b4e1b85e3 (diff)
downloadllvm-15701f8969fcb36899a75ca2df6fdcbc52141106.tar.gz
llvm-15701f8969fcb36899a75ca2df6fdcbc52141106.tar.bz2
llvm-15701f8969fcb36899a75ca2df6fdcbc52141106.tar.xz
Rename NonScalarIntSafe to something more appropriate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143080 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 948a2f4f63..1dbd076d64 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -646,7 +646,7 @@ public:
/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
/// means there isn't a need to check it against alignment requirement,
/// probably because the source does not need to be loaded. If
- /// 'NonScalarIntSafe' is true, that means it's safe to return a
+ /// 'IsZeroVal' is true, that means it's safe to return a
/// non-scalar-integer type, e.g. empty string source, constant, or loaded
/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
/// constant so it does not need to be loaded.
@@ -654,7 +654,7 @@ public:
/// target-independent logic.
virtual EVT getOptimalMemOpType(uint64_t /*Size*/,
unsigned /*DstAlign*/, unsigned /*SrcAlign*/,
- bool /*NonScalarIntSafe*/,
+ bool /*IsZeroVal*/,
bool /*MemcpyStrSrc*/,
MachineFunction &/*MF*/) const {
return MVT::Other;