[Hexagon]

NFC Renaming reserved identifier.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221898 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Colin LeMahieu 2014-11-13 16:36:30 +00:00
parent ddf4026dd8
commit 511fa66c69

View File

@ -21,20 +21,20 @@ namespace {
class HexagonELFObjectWriter : public MCELFObjectTargetWriter {
private:
StringRef _CPU;
StringRef CPU;
public:
HexagonELFObjectWriter(uint8_t OSABI, StringRef CPU);
HexagonELFObjectWriter(uint8_t OSABI, StringRef C);
virtual unsigned GetRelocType(MCValue const &Target, MCFixup const &Fixup,
bool IsPCRel) const override;
};
}
HexagonELFObjectWriter::HexagonELFObjectWriter(uint8_t OSABI, StringRef CPU)
HexagonELFObjectWriter::HexagonELFObjectWriter(uint8_t OSABI, StringRef C)
: MCELFObjectTargetWriter(/*Is64bit*/ false, OSABI, ELF::EM_HEXAGON,
/*HasRelocationAddend*/ true),
_CPU(CPU) {}
CPU(C) {}
unsigned HexagonELFObjectWriter::GetRelocType(MCValue const &/*Target*/,
MCFixup const &Fixup,