aboutsummaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorShuxin Yang <shuxin.llvm@gmail.com>2013-01-02 18:26:31 +0000
committerShuxin Yang <shuxin.llvm@gmail.com>2013-01-02 18:26:31 +0000
commitcbf5373603991b7196f096ddf2b5962ed7708b7e (patch)
treec004a5a6aa0f8a71010f6d42811a9a9a5dadde0c /include/llvm
parente3b2489f4f3f28d65c0bc491a7d9e3d295f35723 (diff)
- Add comment to two functions which might be considered as dead code.
- Fix a typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171399 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/TargetTransformInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/TargetTransformInfo.h b/include/llvm/TargetTransformInfo.h
index 2a4cd2fc45..a446c7b971 100644
--- a/include/llvm/TargetTransformInfo.h
+++ b/include/llvm/TargetTransformInfo.h
@@ -78,7 +78,7 @@ class ScalarTargetTransformInfo {
public:
/// PopcntHwSupport - Hardware support for population count. Compared to the
/// SW implementation, HW support is supposed to significantly boost the
- /// performance when the population is dense, and it may or not may degrade
+ /// performance when the population is dense, and it may or may not degrade
/// performance if the population is sparse. A HW support is considered as
/// "Fast" if it can outperform, or is on a par with, SW implementaion when
/// the population is sparse; otherwise, it is considered as "Slow".