mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Rename AddSelectionDAGCSEId() to addSelectionDAGCSEId().
Naming conventions consistency. No functional change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140636 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a9390a4d5f
commit
5405d58e21
@ -54,7 +54,7 @@ public:
|
||||
virtual int getExistingMachineCPValue(MachineConstantPool *CP,
|
||||
unsigned Alignment) = 0;
|
||||
|
||||
virtual void AddSelectionDAGCSEId(FoldingSetNodeID &ID) = 0;
|
||||
virtual void addSelectionDAGCSEId(FoldingSetNodeID &ID) = 0;
|
||||
|
||||
/// print - Implement operator<<
|
||||
virtual void print(raw_ostream &O) const = 0;
|
||||
|
@ -403,7 +403,7 @@ static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) {
|
||||
ID.AddInteger(CP->getAlignment());
|
||||
ID.AddInteger(CP->getOffset());
|
||||
if (CP->isMachineConstantPoolEntry())
|
||||
CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
|
||||
CP->getMachineCPVal()->addSelectionDAGCSEId(ID);
|
||||
else
|
||||
ID.AddPointer(CP->getConstVal());
|
||||
ID.AddInteger(CP->getTargetFlags());
|
||||
@ -1154,7 +1154,7 @@ SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT,
|
||||
AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
|
||||
ID.AddInteger(Alignment);
|
||||
ID.AddInteger(Offset);
|
||||
C->AddSelectionDAGCSEId(ID);
|
||||
C->addSelectionDAGCSEId(ID);
|
||||
ID.AddInteger(TargetFlags);
|
||||
void *IP = 0;
|
||||
if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
|
||||
|
@ -87,7 +87,7 @@ ARMConstantPoolValue::~ARMConstantPoolValue() {
|
||||
}
|
||||
|
||||
void
|
||||
ARMConstantPoolValue::AddSelectionDAGCSEId(FoldingSetNodeID &ID) {
|
||||
ARMConstantPoolValue::addSelectionDAGCSEId(FoldingSetNodeID &ID) {
|
||||
ID.AddPointer(CVal);
|
||||
ID.AddPointer(S);
|
||||
ID.AddInteger(LabelId);
|
||||
|
@ -101,7 +101,7 @@ public:
|
||||
virtual int getExistingMachineCPValue(MachineConstantPool *CP,
|
||||
unsigned Alignment);
|
||||
|
||||
virtual void AddSelectionDAGCSEId(FoldingSetNodeID &ID);
|
||||
virtual void addSelectionDAGCSEId(FoldingSetNodeID &ID);
|
||||
|
||||
/// hasSameValue - Return true if this ARM constpool value
|
||||
/// can share the same constantpool entry as another ARM constpool value.
|
||||
|
Loading…
x
Reference in New Issue
Block a user