[llvm-commits] CVS: llvm/docs/ProgrammersManual.html
Chris Lattner
sabre at nondot.org
Sat Feb 3 12:18:09 PST 2007
Changes in directory llvm/docs:
ProgrammersManual.html updated: 1.116 -> 1.117
---
Log message:
fix grammar
---
Diffs of the changes: (+4 -4)
ProgrammersManual.html | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Index: llvm/docs/ProgrammersManual.html
diff -u llvm/docs/ProgrammersManual.html:1.116 llvm/docs/ProgrammersManual.html:1.117
--- llvm/docs/ProgrammersManual.html:1.116 Sat Feb 3 14:02:25 2007
+++ llvm/docs/ProgrammersManual.html Sat Feb 3 14:17:53 2007
@@ -1187,11 +1187,11 @@
There are several aspects of DenseMap that you should be aware of, however. The
iterators in a densemap are invalidated whenever an insertion occurs, unlike
map. Also, because DenseMap allocates space for a large number of key/value
-pairs (it starts with 64 by default) if you have large keys or values, it can
-waste a lot of space. Finally, you must implement a partial specialization of
+pairs (it starts with 64 by default), it will waste a lot of space if your keys
+or values are large. Finally, you must implement a partial specialization of
DenseMapKeyInfo for the key that you want, if it isn't already supported. This
is required to tell DenseMap about two special marker values (which can never be
-inserted into the map).</p>
+inserted into the map) that it needs internally.</p>
</div>
@@ -3161,7 +3161,7 @@
<a href="mailto:dhurjati at cs.uiuc.edu">Dinakar Dhurjati</a> and
<a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
<a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
- Last modified: $Date: 2007/02/03 20:02:25 $
+ Last modified: $Date: 2007/02/03 20:17:53 $
</address>
</body>
More information about the llvm-commits
mailing list