diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-11-02 17:10:37 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-11-02 17:10:37 +0000 |
commit | 31ba10b7431de1c320c6027d86d4592d6fde4a8f (patch) | |
tree | 8b964e735d8e49eec5cdceccbaee1ac3dc5084f0 /lib/Target/ARM/ARMConstantPoolValue.h | |
parent | 7c9b1ac5073a4988a9ed39aed6cd5a22e6a1c24f (diff) | |
download | external_llvm-31ba10b7431de1c320c6027d86d4592d6fde4a8f.zip external_llvm-31ba10b7431de1c320c6027d86d4592d6fde4a8f.tar.gz external_llvm-31ba10b7431de1c320c6027d86d4592d6fde4a8f.tar.bz2 |
Hyphenate some comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85808 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMConstantPoolValue.h')
-rw-r--r-- | lib/Target/ARM/ARMConstantPoolValue.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Target/ARM/ARMConstantPoolValue.h b/lib/Target/ARM/ARMConstantPoolValue.h index 1ec3f86..8fb3f92 100644 --- a/lib/Target/ARM/ARMConstantPoolValue.h +++ b/lib/Target/ARM/ARMConstantPoolValue.h @@ -33,14 +33,14 @@ namespace ARMCP { } /// ARMConstantPoolValue - ARM specific constantpool value. This is used to -/// represent PC relative displacement between the address of the load +/// represent PC-relative displacement between the address of the load /// instruction and the constant being loaded, i.e. (&GV-(LPIC+8)). class ARMConstantPoolValue : public MachineConstantPoolValue { Constant *CVal; // Constant being loaded. const char *S; // ExtSymbol being loaded. unsigned LabelId; // Label id of the load. ARMCP::ARMCPKind Kind; // Kind of constant. - unsigned char PCAdjust; // Extra adjustment if constantpool is pc relative. + unsigned char PCAdjust; // Extra adjustment if constantpool is pc-relative. // 8 for ARM, 4 for Thumb. const char *Modifier; // GV modifier i.e. (&GV(modifier)-(LPIC+8)) bool AddCurrentAddress; @@ -86,7 +86,6 @@ public: void dump() const; }; - inline raw_ostream &operator<<(raw_ostream &O, const ARMConstantPoolValue &V) { V.print(O); return O; |