forked from OSchip/llvm-project
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. llvm-svn: 205215
This commit is contained in:
parent
ed0b2e9733
commit
6d301b8ff2
|
@ -744,8 +744,8 @@ class ELFARMAsmBackend : public ARMAsmBackend {
|
|||
public:
|
||||
uint8_t OSABI;
|
||||
ELFARMAsmBackend(const Target &T, const StringRef TT,
|
||||
uint8_t _OSABI, bool _IsLittle)
|
||||
: ARMAsmBackend(T, TT, _IsLittle), OSABI(_OSABI) { }
|
||||
uint8_t OSABI, bool IsLittle)
|
||||
: ARMAsmBackend(T, TT, IsLittle), OSABI(OSABI) { }
|
||||
|
||||
MCObjectWriter *createObjectWriter(raw_ostream &OS) const override {
|
||||
return createARMELFObjectWriter(OS, OSABI, isLittle());
|
||||
|
|
Loading…
Reference in New Issue