diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-10-19 21:34:47 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-10-19 21:34:47 +0000 |
commit | 3ed6338ff2da9836e33bac15bab480718de7caaa (patch) | |
tree | a083cae2a8e10d3bb9e61923146b105cfd46db53 /llvm/lib/Target/ARM/ARMMachineFunctionInfo.h | |
parent | e75b876fb9b57aeb46a1acdcab12e2975efd8d10 (diff) | |
download | bcm5719-llvm-3ed6338ff2da9836e33bac15bab480718de7caaa.tar.gz bcm5719-llvm-3ed6338ff2da9836e33bac15bab480718de7caaa.zip |
Update comments to remove obsolete references.
llvm-svn: 116863
Diffstat (limited to 'llvm/lib/Target/ARM/ARMMachineFunctionInfo.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMMachineFunctionInfo.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h b/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h index 22f3750a422..3b34a23774d 100644 --- a/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h +++ b/llvm/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; |