From 9ede7c03956376105130421c786e1360e948b290 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Mon, 9 Sep 2019 16:05:59 +0000 Subject: [PATCH] Fix typo in comment noticed in D60295. NFCI. llvm-svn: 371415 --- llvm/include/llvm/CodeGen/SwitchLoweringUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/CodeGen/SwitchLoweringUtils.h b/llvm/include/llvm/CodeGen/SwitchLoweringUtils.h index 62134dc792f7..31b5f794d90c 100644 --- a/llvm/include/llvm/CodeGen/SwitchLoweringUtils.h +++ b/llvm/include/llvm/CodeGen/SwitchLoweringUtils.h @@ -221,7 +221,7 @@ struct BitTestBlock { Cases(std::move(C)), Prob(Pr) {} }; -/// Return the range of value within a range. +/// Return the range of values within a range. uint64_t getJumpTableRange(const CaseClusterVector &Clusters, unsigned First, unsigned Last);