blob: 9091dce33a396fa04506ecc0763f3678a0fa49ef [file] [log] [blame]
//===- ARMGNUInfo.h -------------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MCLD_TARGET_ARM_GNU_INFO_H
#define MCLD_TARGET_ARM_GNU_INFO_H
#include <mcld/Target/GNUInfo.h>
#include <llvm/Support/ELF.h>
namespace mcld {
class ARMGNUInfo : public GNUInfo
{
public:
ARMGNUInfo(const llvm::Triple& pTriple) : GNUInfo(pTriple) { }
uint32_t machine() const { return llvm::ELF::EM_ARM; }
};
} // namespace of mcld
#endif