aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-10-19 21:34:47 +0000
committerJim Grosbach <grosbach@apple.com>2010-10-19 21:34:47 +0000
commit8155ea4c3a656d32b0ddd93de6e7bbca4ace867a (patch)
tree30304c40bbe6cc3088f8275ec2885f763cc19afa
parent1db839e73471a40309c2c10873b67c3b5b1b7a7b (diff)
Update comments to remove obsolete references.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116863 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMMachineFunctionInfo.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/Target/ARM/ARMMachineFunctionInfo.h b/lib/Target/ARM/ARMMachineFunctionInfo.h
index 22f3750a42..3b34a23774 100644
--- a/lib/Target/ARM/ARMMachineFunctionInfo.h
+++ b/lib/Target/ARM/ARMMachineFunctionInfo.h
@@ -55,8 +55,8 @@ class ARMFunctionInfo : public MachineFunctionInfo {
/// spill stack offset.
unsigned FramePtrSpillOffset;
- /// GPRCSOffset, GPRCS2Offset, DPRCSOffset - Starting offset of callee saved
- /// register spills areas (excluding R9 for Mac OS X):
+ /// GPRCSOffset, DPRCSOffset - Starting offset of callee saved register
+ /// spills areas (excluding R9 for Mac OS X):
///
/// GPR callee-saved (1) : r4, r5, r6, r7, r8, r9, r10, r11, lr
/// --------------------------------------------
@@ -64,13 +64,12 @@ class ARMFunctionInfo : public MachineFunctionInfo {
unsigned GPRCSOffset;
unsigned DPRCSOffset;
- /// GPRCSSize, GPRCS2Size, DPRCSSize - Sizes of callee saved register spills
- /// areas.
+ /// GPRCSSize, DPRCSSize - Sizes of callee saved register spills areas.
unsigned GPRCSSize;
unsigned DPRCSSize;
- /// GPRCSFrames, GPRCS2Frames, DPRCSFrames - Keeps track of frame indices
- /// which belong to these spill areas.
+ /// GPRCSFrames, DPRCSFrames - Keeps track of frame indices which belong
+ /// to these spill areas.
BitVector GPRCSFrames;
BitVector DPRCSFrames;