From 1ba7c27bcc6b6aa2ef0891a2706e9ce6400a4405 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 llvm-svn: 309748 --- 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;