mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
* LowercaseString moved to StringExtras.h
* Wrap long line to 80 cols git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14382 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ca428df792
commit
f54ef97abc
@ -365,15 +365,6 @@ bool V8Printer::runOnMachineFunction(MachineFunction &MF) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
std::string LowercaseString (const std::string &S) {
|
|
||||||
std::string result (S);
|
|
||||||
for (unsigned i = 0; i < S.length(); ++i)
|
|
||||||
if (isupper (result[i]))
|
|
||||||
result[i] = tolower(result[i]);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
void V8Printer::printOperand(const MachineInstr *MI, int opNum) {
|
void V8Printer::printOperand(const MachineInstr *MI, int opNum) {
|
||||||
const MachineOperand &MO = MI->getOperand (opNum);
|
const MachineOperand &MO = MI->getOperand (opNum);
|
||||||
const MRegisterInfo &RI = *TM.getRegisterInfo();
|
const MRegisterInfo &RI = *TM.getRegisterInfo();
|
||||||
@ -381,7 +372,8 @@ void V8Printer::printOperand(const MachineInstr *MI, int opNum) {
|
|||||||
if (MI->getOpcode() == V8::SETHIi && !MO.isRegister() && !MO.isImmediate()) {
|
if (MI->getOpcode() == V8::SETHIi && !MO.isRegister() && !MO.isImmediate()) {
|
||||||
O << "%hi(";
|
O << "%hi(";
|
||||||
CloseParen = true;
|
CloseParen = true;
|
||||||
} else if (MI->getOpcode() ==V8::ORri &&!MO.isRegister() &&!MO.isImmediate()) {
|
} else if (MI->getOpcode() ==V8::ORri &&!MO.isRegister() &&!MO.isImmediate())
|
||||||
|
{
|
||||||
O << "%lo(";
|
O << "%lo(";
|
||||||
CloseParen = true;
|
CloseParen = true;
|
||||||
}
|
}
|
||||||
|
@ -365,15 +365,6 @@ bool V8Printer::runOnMachineFunction(MachineFunction &MF) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
std::string LowercaseString (const std::string &S) {
|
|
||||||
std::string result (S);
|
|
||||||
for (unsigned i = 0; i < S.length(); ++i)
|
|
||||||
if (isupper (result[i]))
|
|
||||||
result[i] = tolower(result[i]);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
void V8Printer::printOperand(const MachineInstr *MI, int opNum) {
|
void V8Printer::printOperand(const MachineInstr *MI, int opNum) {
|
||||||
const MachineOperand &MO = MI->getOperand (opNum);
|
const MachineOperand &MO = MI->getOperand (opNum);
|
||||||
const MRegisterInfo &RI = *TM.getRegisterInfo();
|
const MRegisterInfo &RI = *TM.getRegisterInfo();
|
||||||
@ -381,7 +372,8 @@ void V8Printer::printOperand(const MachineInstr *MI, int opNum) {
|
|||||||
if (MI->getOpcode() == V8::SETHIi && !MO.isRegister() && !MO.isImmediate()) {
|
if (MI->getOpcode() == V8::SETHIi && !MO.isRegister() && !MO.isImmediate()) {
|
||||||
O << "%hi(";
|
O << "%hi(";
|
||||||
CloseParen = true;
|
CloseParen = true;
|
||||||
} else if (MI->getOpcode() ==V8::ORri &&!MO.isRegister() &&!MO.isImmediate()) {
|
} else if (MI->getOpcode() ==V8::ORri &&!MO.isRegister() &&!MO.isImmediate())
|
||||||
|
{
|
||||||
O << "%lo(";
|
O << "%lo(";
|
||||||
CloseParen = true;
|
CloseParen = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user