[llvm-commits] [llvm] r85808 - /llvm/trunk/lib/Target/ARM/ARMConstantPoolValue.h
Bob Wilson
bob.wilson at apple.com
Mon Nov 2 09:10:38 PST 2009
Author: bwilson
Date: Mon Nov 2 11:10:37 2009
New Revision: 85808
URL: http://llvm.org/viewvc/llvm-project?rev=85808&view=rev
Log:
Hyphenate some comments.
Modified:
llvm/trunk/lib/Target/ARM/ARMConstantPoolValue.h
Modified: llvm/trunk/lib/Target/ARM/ARMConstantPoolValue.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMConstantPoolValue.h?rev=85808&r1=85807&r2=85808&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMConstantPoolValue.h (original)
+++ llvm/trunk/lib/Target/ARM/ARMConstantPoolValue.h Mon Nov 2 11:10:37 2009
@@ -33,14 +33,14 @@
}
/// 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 @@
void dump() const;
};
-
inline raw_ostream &operator<<(raw_ostream &O, const ARMConstantPoolValue &V) {
V.print(O);
return O;
More information about the llvm-commits
mailing list