mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
CodeGen still defaults to non-verbose asm, but llc now overrides it and default to verbose.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67668 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1072,7 +1072,7 @@ public:
|
||||
Asm->EOL("Offset");
|
||||
} else if (Reg < 64) {
|
||||
Asm->EmitInt8(DW_CFA_offset + Reg);
|
||||
if (VerboseAsm)
|
||||
if (Asm->isVerbose())
|
||||
Asm->EOL("DW_CFA_offset + Reg (" + utostr(Reg) + ")");
|
||||
else
|
||||
Asm->EOL();
|
||||
@ -2197,7 +2197,7 @@ private:
|
||||
// Emit the code (index) for the abbreviation.
|
||||
Asm->EmitULEB128Bytes(AbbrevNumber);
|
||||
|
||||
if (VerboseAsm)
|
||||
if (Asm->isVerbose())
|
||||
Asm->EOL(std::string("Abbrev [" +
|
||||
utostr(AbbrevNumber) +
|
||||
"] 0x" + utohexstr(Die->getOffset()) +
|
||||
@ -2487,7 +2487,7 @@ private:
|
||||
// Isolate current sections line info.
|
||||
const std::vector<SrcLineInfo> &LineInfos = SectionSourceLines[j];
|
||||
|
||||
if (VerboseAsm) {
|
||||
if (Asm->isVerbose()) {
|
||||
const Section* S = SectionMap[j + 1];
|
||||
O << '\t' << TAI->getCommentString() << " Section"
|
||||
<< S->getName() << '\n';
|
||||
@ -2504,7 +2504,7 @@ private:
|
||||
unsigned LabelID = MMI->MappedLabel(LineInfo.getLabelID());
|
||||
if (!LabelID) continue;
|
||||
|
||||
if (!VerboseAsm)
|
||||
if (!Asm->isVerbose())
|
||||
Asm->EOL();
|
||||
else {
|
||||
std::pair<unsigned, unsigned> SourceID =
|
||||
|
Reference in New Issue
Block a user