From fbbab58fac75730bdc72c5f3bcb0df3fb4a66f57 Mon Sep 17 00:00:00 2001 From: Haicheng Wu Date: Tue, 1 Aug 2017 21:26:45 +0000 Subject: [PATCH] [AArch64] Fix a typo in isExtFreeImpl() next => not Differential Revision: https://reviews.llvm.org/D36104 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@309748 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/AArch64/AArch64ISelLowering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/AArch64/AArch64ISelLowering.cpp b/lib/Target/AArch64/AArch64ISelLowering.cpp index 9cb5435ff4b..b1a2e363f53 100644 --- a/lib/Target/AArch64/AArch64ISelLowering.cpp +++ b/lib/Target/AArch64/AArch64ISelLowering.cpp @@ -7421,7 +7421,7 @@ bool AArch64TargetLowering::isExtFreeImpl(const Instruction *Ext) const { if (isa(Ext)) return false; - // Vector types are next free. + // Vector types are not free. if (Ext->getType()->isVectorTy()) return false; -- 2.11.0