diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-12-29 02:15:06 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-12-29 02:15:06 +0000 |
commit | 3a023d318075639434fdb5e2424d0c2c5edd89e7 (patch) | |
tree | db782ad850bcf13fd5024602024e3d8930d393fd | |
parent | b48a18903a5769f0ecb295db069252576b1388b0 (diff) |
Fix grammar error noticed by Duncan.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147333 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/CodeMetrics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/CodeMetrics.h b/include/llvm/Analysis/CodeMetrics.h index c01507f0a9..6d34781fb2 100644 --- a/include/llvm/Analysis/CodeMetrics.h +++ b/include/llvm/Analysis/CodeMetrics.h @@ -32,7 +32,7 @@ namespace llvm { // bool NeverInline; // True if this function contains a call to setjmp or other functions - // with attribute "returns twice" without having the attribute by itself. + // with attribute "returns twice" without having the attribute itself. bool exposesReturnsTwice; // True if this function calls itself |