mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 00:24:26 +00:00
Hyphenate some comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85808 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -33,14 +33,14 @@ namespace ARMCP {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// ARMConstantPoolValue - ARM specific constantpool value. This is used to
|
/// 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)).
|
/// instruction and the constant being loaded, i.e. (&GV-(LPIC+8)).
|
||||||
class ARMConstantPoolValue : public MachineConstantPoolValue {
|
class ARMConstantPoolValue : public MachineConstantPoolValue {
|
||||||
Constant *CVal; // Constant being loaded.
|
Constant *CVal; // Constant being loaded.
|
||||||
const char *S; // ExtSymbol being loaded.
|
const char *S; // ExtSymbol being loaded.
|
||||||
unsigned LabelId; // Label id of the load.
|
unsigned LabelId; // Label id of the load.
|
||||||
ARMCP::ARMCPKind Kind; // Kind of constant.
|
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.
|
// 8 for ARM, 4 for Thumb.
|
||||||
const char *Modifier; // GV modifier i.e. (&GV(modifier)-(LPIC+8))
|
const char *Modifier; // GV modifier i.e. (&GV(modifier)-(LPIC+8))
|
||||||
bool AddCurrentAddress;
|
bool AddCurrentAddress;
|
||||||
@ -86,7 +86,6 @@ public:
|
|||||||
void dump() const;
|
void dump() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
inline raw_ostream &operator<<(raw_ostream &O, const ARMConstantPoolValue &V) {
|
inline raw_ostream &operator<<(raw_ostream &O, const ARMConstantPoolValue &V) {
|
||||||
V.print(O);
|
V.print(O);
|
||||||
return O;
|
return O;
|
||||||
|
Reference in New Issue
Block a user