diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-07-29 04:25:43 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-07-29 04:25:43 +0000 |
commit | 818b3631f3fbf6811a941be5d509513fc7587d9c (patch) | |
tree | 918fd23b2d7071b48ee5e74b935869fa0c35fa1e /llvm/lib | |
parent | 2795a34a92020a0dd8d52095a3d82f18609ffb42 (diff) | |
download | bcm5719-llvm-818b3631f3fbf6811a941be5d509513fc7587d9c.tar.gz bcm5719-llvm-818b3631f3fbf6811a941be5d509513fc7587d9c.zip |
Fix a few typoes and grammaroes in comments.
llvm-svn: 15319
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/SparcV9/RegAlloc/LiveRange.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/SparcV9/RegAlloc/LiveRange.h b/llvm/lib/Target/SparcV9/RegAlloc/LiveRange.h index 045a91032c4..3d19bbd1fc7 100644 --- a/llvm/lib/Target/SparcV9/RegAlloc/LiveRange.h +++ b/llvm/lib/Target/SparcV9/RegAlloc/LiveRange.h @@ -40,8 +40,8 @@ class LiveRange : public ValueSet { int Color; // color assigned to this live range bool mustSpill; // whether this LR must be spilt - /// SuggestedColor - if this LR has a suggested color, can it be - /// really alloated? A suggested color cannot be allocated when the + /// SuggestedColor - if this LR has a suggested color, can it + /// really be allocated? A suggested color cannot be allocated when the /// suggested color is volatile and when there are call /// interferences. /// @@ -60,12 +60,12 @@ class LiveRange : public ValueSet { /// int SpilledStackOffsetFromFP; - /// HasSpillOffset 0 Whether this live range has a spill offset + /// HasSpillOffset - True iff this live range has a spill offset. /// bool HasSpillOffset; - /// The spill cost of this live range. Calculated using loop depth of - /// each reference to each Value in the live range + /// SpillCost - The spill cost of this live range. Calculated using loop depth + /// of each reference to each Value in the live range. /// unsigned SpillCost; |