[llvm-commits] [llvm] r49331 - /llvm/branches/ggreif/use-diet/include/llvm/User.h

Gabor Greif ggreif at gmail.com
Mon Apr 7 04:37:15 PDT 2008


Author: ggreif
Date: Mon Apr  7 06:37:12 2008
New Revision: 49331

URL: http://llvm.org/viewvc/llvm-project?rev=49331&view=rev
Log:
minor corrections

Modified:
    llvm/branches/ggreif/use-diet/include/llvm/User.h

Modified: llvm/branches/ggreif/use-diet/include/llvm/User.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/ggreif/use-diet/include/llvm/User.h?rev=49331&r1=49330&r2=49331&view=diff

==============================================================================
--- llvm/branches/ggreif/use-diet/include/llvm/User.h (original)
+++ llvm/branches/ggreif/use-diet/include/llvm/User.h Mon Apr  7 06:37:12 2008
@@ -47,7 +47,7 @@
 array from the User object and there may be a variable
 number of them.
 
-Initially each layout will posses a direct pointer to the
+Initially each layout will possess a direct pointer to the
 start of the array of Uses. Though not mandatory for layout a),
 we stick to this redundancy for the sake of simplicity.
 The User object will also store the number of Use objects it
@@ -77,6 +77,9 @@
 #          | V | V | V | V |
 #          '---'---'---'---'''
 
+   (In the above figures 'V' stands for the Value* that
+    is stored in each Use object)
+
 
 Since the Use objects will be deprived of the direct pointer to
 their User objects, there must be a fast and exact method to
@@ -90,10 +93,10 @@
 10 --> stop and calc (s)
 11 --> full stop (S)
 
-Given a Use*, all we have to do is walk till we get a
-stop and we either have a User immediately behind or
+Given a Use*, all we have to do is to walk till we get
+a stop and we either have a User immediately behind or
 we have to walk to the next stop picking up digits
-and calculate the offset:
+and calculating the offset:
 
 .---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.---.----------------
 | 1 | s | 1 | 0 | 1 | 0 | s | 1 | 1 | 0 | s | 1 | 1 | s | 1 | S | User (or User*)





More information about the llvm-commits mailing list