summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target
diff options
context:
space:
mode:
authorHaicheng Wu <haicheng@codeaurora.org>2017-08-01 21:26:45 +0000
committerHaicheng Wu <haicheng@codeaurora.org>2017-08-01 21:26:45 +0000
commit50692a203c98cf4116a2e924cad498cae2a35e09 (patch)
tree04c4a4a633a77a0072fa87b835305fa8fe28bc59 /llvm/lib/Target
parent4b102c3d5c4f7232bf915a934eb3dbdd709fb471 (diff)
downloadbcm5719-llvm-50692a203c98cf4116a2e924cad498cae2a35e09.tar.gz
bcm5719-llvm-50692a203c98cf4116a2e924cad498cae2a35e09.zip
[AArch64] Fix a typo in isExtFreeImpl()
next => not Differential Revision: https://reviews.llvm.org/D36104 llvm-svn: 309748
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r--llvm/lib/Target/AArch64/AArch64ISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
index 9cb5435ff4b..b1a2e363f53 100644
--- a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -7421,7 +7421,7 @@ bool AArch64TargetLowering::isExtFreeImpl(const Instruction *Ext) const {
if (isa<FPExtInst>(Ext))
return false;
- // Vector types are next free.
+ // Vector types are not free.
if (Ext->getType()->isVectorTy())
return false;
OpenPOWER on IntegriCloud