diff options
| author | Peter Collingbourne <peter@pcc.me.uk> | 2018-05-21 17:57:19 +0000 |
|---|---|---|
| committer | Peter Collingbourne <peter@pcc.me.uk> | 2018-05-21 17:57:19 +0000 |
| commit | 571a3301aeaaddcb1d784d8f27957170fe0cfd15 (patch) | |
| tree | 68b8fadb711472ead3443a2b0352d21eadb7d405 /llvm/lib/Target/Nios2 | |
| parent | a91ce17b5f2bbaa909aaa61a4610316de06f18cb (diff) | |
| download | bcm5719-llvm-571a3301aeaaddcb1d784d8f27957170fe0cfd15.tar.gz bcm5719-llvm-571a3301aeaaddcb1d784d8f27957170fe0cfd15.zip | |
MC: Change MCAsmBackend::writeNopData() to take a raw_ostream instead of an MCObjectWriter. NFCI.
To make this work I needed to add an endianness field to MCAsmBackend
so that writeNopData() implementations know which endianness to use.
Part of PR37466.
Differential Revision: https://reviews.llvm.org/D47035
llvm-svn: 332857
Diffstat (limited to 'llvm/lib/Target/Nios2')
| -rw-r--r-- | llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.cpp b/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.cpp index 52fd344e7e2..7f28ff6da28 100644 --- a/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.cpp +++ b/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.cpp @@ -118,7 +118,7 @@ Nios2AsmBackend::createObjectWriter(raw_pwrite_stream &OS) const { MCELFObjectTargetWriter::getOSABI(OSType)); } -bool Nios2AsmBackend::writeNopData(uint64_t Count, MCObjectWriter *OW) const { +bool Nios2AsmBackend::writeNopData(raw_ostream &OS, uint64_t Count) const { return true; } diff --git a/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.h b/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.h index 0aa42043ee2..81a2e50243b 100644 --- a/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.h +++ b/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.h @@ -31,12 +31,12 @@ class Nios2AsmBackend : public MCAsmBackend { public: Nios2AsmBackend(const Target &T, Triple::OSType OSType) - : MCAsmBackend(), OSType(OSType) {} + : MCAsmBackend(support::little), OSType(OSType) {} std::unique_ptr<MCObjectWriter> createObjectWriter(raw_pwrite_stream &OS) const override; - bool writeNopData(uint64_t Count, MCObjectWriter *OW) const override; + bool writeNopData(raw_ostream &OS, uint64_t Count) const override; void applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, MutableArrayRef<char> Data, |

