mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-19 02:25:01 +00:00
ARM: change parameter names of the ELFARMAsmBackend constructor
I removed the underscore at the beginning of the parameter name, because of a comment from Tim. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205215 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -744,8 +744,8 @@ class ELFARMAsmBackend : public ARMAsmBackend {
|
|||||||
public:
|
public:
|
||||||
uint8_t OSABI;
|
uint8_t OSABI;
|
||||||
ELFARMAsmBackend(const Target &T, const StringRef TT,
|
ELFARMAsmBackend(const Target &T, const StringRef TT,
|
||||||
uint8_t _OSABI, bool _IsLittle)
|
uint8_t OSABI, bool IsLittle)
|
||||||
: ARMAsmBackend(T, TT, _IsLittle), OSABI(_OSABI) { }
|
: ARMAsmBackend(T, TT, IsLittle), OSABI(OSABI) { }
|
||||||
|
|
||||||
MCObjectWriter *createObjectWriter(raw_ostream &OS) const override {
|
MCObjectWriter *createObjectWriter(raw_ostream &OS) const override {
|
||||||
return createARMELFObjectWriter(OS, OSABI, isLittle());
|
return createARMELFObjectWriter(OS, OSABI, isLittle());
|
||||||
|
Reference in New Issue
Block a user