mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 22:01:56 +00:00
Fixed parameter name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143594 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
eefb0de6dc
commit
a1e78888d9
lib/Target/ARM
@ -8135,13 +8135,13 @@ static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
|
||||
|
||||
EVT ARMTargetLowering::getOptimalMemOpType(uint64_t Size,
|
||||
unsigned DstAlign, unsigned SrcAlign,
|
||||
bool NonScalarIntSafe,
|
||||
bool IsZeroVal,
|
||||
bool MemcpyStrSrc,
|
||||
MachineFunction &MF) const {
|
||||
const Function *F = MF.getFunction();
|
||||
|
||||
// See if we can use NEON instructions for this...
|
||||
if (NonScalarIntSafe &&
|
||||
if (IsZeroVal &&
|
||||
!F->hasFnAttr(Attribute::NoImplicitFloat) &&
|
||||
Subtarget->hasNEON()) {
|
||||
if (memOpAlign(SrcAlign, DstAlign, 16) && Size >= 16) {
|
||||
|
@ -270,7 +270,7 @@ namespace llvm {
|
||||
|
||||
virtual EVT getOptimalMemOpType(uint64_t Size,
|
||||
unsigned DstAlign, unsigned SrcAlign,
|
||||
bool NonScalarIntSafe,
|
||||
bool IsZeroVal,
|
||||
bool MemcpyStrSrc,
|
||||
MachineFunction &MF) const;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user