AccessesArgumentsReadonly is read-only.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118615 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2010-11-09 19:50:00 +00:00
parent db78c4873e
commit 4a53f37a1a

View File

@ -270,7 +270,9 @@ public:
/// true. For use when the call site is not known.
///
static bool onlyReadsMemory(ModRefBehavior MRB) {
return MRB == DoesNotAccessMemory || MRB == OnlyReadsMemory;
return MRB == DoesNotAccessMemory ||
MRB == AccessesArgumentsReadonly ||
MRB == OnlyReadsMemory;
}