[llvm] r368770 - [AArch64] Remove incorrect usage of MONonTemporal.
Eli Friedman via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 13 16:12:14 PDT 2019
Author: efriedma
Date: Tue Aug 13 16:12:14 2019
New Revision: 368770
URL: http://llvm.org/viewvc/llvm-project?rev=368770&view=rev
Log:
[AArch64] Remove incorrect usage of MONonTemporal.
This has no effect at the moment, but might matter if we try to
implement non-temporal loads in the future.
Modified:
llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp
Modified: llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp?rev=368770&r1=368769&r2=368770&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp Tue Aug 13 16:12:14 2019
@@ -4300,8 +4300,7 @@ AArch64TargetLowering::LowerDarwinGlobal
MVT::i64, DL, Chain, DescAddr,
MachinePointerInfo::getGOT(DAG.getMachineFunction()),
/* Alignment = */ 8,
- MachineMemOperand::MONonTemporal | MachineMemOperand::MOInvariant |
- MachineMemOperand::MODereferenceable);
+ MachineMemOperand::MOInvariant | MachineMemOperand::MODereferenceable);
Chain = FuncTLVGet.getValue(1);
MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo();
More information about the llvm-commits
mailing list