forked from OSchip/llvm-project
20 lines
573 B
C
20 lines
573 B
C
//===- lib/ReaderWriter/ELF/Targets.h -------------------------------------===//
|
|
//
|
|
// The LLVM Linker
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLD_READER_WRITER_ELF_TARGETS_H
|
|
#define LLD_READER_WRITER_ELF_TARGETS_H
|
|
|
|
#include "Hexagon/HexagonTarget.h"
|
|
#include "Mips/MipsTarget.h"
|
|
#include "PPC/PPCTarget.h"
|
|
#include "X86/X86Target.h"
|
|
#include "X86_64/X86_64Target.h"
|
|
|
|
#endif
|