diff options
author | Changpeng Fang <changpeng.fang@gmail.com> | 2019-09-26 22:53:44 +0000 |
---|---|---|
committer | Changpeng Fang <changpeng.fang@gmail.com> | 2019-09-26 22:53:44 +0000 |
commit | f5524f04512d1e9b9581fa6b2be4cc0d4bae7450 (patch) | |
tree | 6252db0f3eec11890d88b06ca12c7814568c6354 /llvm/lib/Target/SystemZ/SystemZInstrInfo.h | |
parent | 945249b5a99d44f494e084a7c1ac5da810f16f6a (diff) | |
download | bcm5719-llvm-f5524f04512d1e9b9581fa6b2be4cc0d4bae7450.tar.gz bcm5719-llvm-f5524f04512d1e9b9581fa6b2be4cc0d4bae7450.zip |
Remove the AliasAnalysis argument in function areMemAccessesTriviallyDisjoint
Reviewers:
arsenm
Differential Revision:
https://reviews.llvm.org/D58360
llvm-svn: 373024
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZInstrInfo.h')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZInstrInfo.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZInstrInfo.h b/llvm/lib/Target/SystemZ/SystemZInstrInfo.h index 627bb909f20..6dc6e72aa52 100644 --- a/llvm/lib/Target/SystemZ/SystemZInstrInfo.h +++ b/llvm/lib/Target/SystemZ/SystemZInstrInfo.h @@ -328,8 +328,7 @@ public: // memory addresses and false otherwise. bool areMemAccessesTriviallyDisjoint(const MachineInstr &MIa, - const MachineInstr &MIb, - AliasAnalysis *AA = nullptr) const override; + const MachineInstr &MIb) const override; }; } // end namespace llvm |