[llvm] r309748 - [AArch64] Fix a typo in isExtFreeImpl()

Haicheng Wu via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 1 14:26:45 PDT 2017


Author: haicheng
Date: Tue Aug  1 14:26:45 2017
New Revision: 309748

URL: http://llvm.org/viewvc/llvm-project?rev=309748&view=rev
Log:
[AArch64] Fix a typo in isExtFreeImpl()

next => not

Differential Revision: https://reviews.llvm.org/D36104

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=309748&r1=309747&r2=309748&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp Tue Aug  1 14:26:45 2017
@@ -7421,7 +7421,7 @@ bool AArch64TargetLowering::isExtFreeImp
   if (isa<FPExtInst>(Ext))
     return false;
 
-  // Vector types are next free.
+  // Vector types are not free.
   if (Ext->getType()->isVectorTy())
     return false;
 




More information about the llvm-commits mailing list