mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
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:
parent
db78c4873e
commit
4a53f37a1a
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user