diff options
author | Lang Hames <lhames@gmail.com> | 2011-11-02 23:37:04 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2011-11-02 23:37:04 +0000 |
commit | 1f4603d498a31f3722ff303c694584f383841475 (patch) | |
tree | 02f5a195a6b6114d67947a928d7c5a10b1ccb30a /llvm/lib | |
parent | 9c95fd2ed62d520f0c7636cd32d553794817dfd0 (diff) | |
download | bcm5719-llvm-1f4603d498a31f3722ff303c694584f383841475.tar.gz bcm5719-llvm-1f4603d498a31f3722ff303c694584f383841475.zip |
Fixed parameter name.
llvm-svn: 143594
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 4 | ||||
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index 222a399c28c..336f730ba4f 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp @@ -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) { diff --git a/llvm/lib/Target/ARM/ARMISelLowering.h b/llvm/lib/Target/ARM/ARMISelLowering.h index 43e43dd35bf..be6a53032ca 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.h +++ b/llvm/lib/Target/ARM/ARMISelLowering.h @@ -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; |