forked from OSchip/llvm-project
parent
89a4bc6dc3
commit
dc30cdb18c
|
@ -1,4 +1,4 @@
|
|||
//===- lld/Driver/CoreInputGraph.h - Files to be linked for CORE linking---==//
|
||||
//===- lld/Driver/CoreInputGraph.h - Input Graph Node for Core linker -----===//
|
||||
//
|
||||
// The LLVM Linker
|
||||
//
|
||||
|
@ -14,8 +14,8 @@
|
|||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLD_CORE_INPUT_GRAPH_H
|
||||
#define LLD_CORE_INPUT_GRAPH_H
|
||||
#ifndef LLD_DRIVER_CORE_INPUT_GRAPH_H
|
||||
#define LLD_DRIVER_CORE_INPUT_GRAPH_H
|
||||
|
||||
#include "lld/Driver/InputGraph.h"
|
||||
#include "lld/ReaderWriter/CoreLinkingContext.h"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
//===- lld/Driver/DarwinInputGraph.h - Files to be linked for MachO
|
||||
// linking---===//
|
||||
//===- lld/Driver/DarwinInputGraph.h - Input Graph Node for Mach-O linker -===//
|
||||
//
|
||||
// The LLVM Linker
|
||||
//
|
||||
|
@ -15,8 +14,8 @@
|
|||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLD_MachO_INPUT_GRAPH_H
|
||||
#define LLD_MachO_INPUT_GRAPH_H
|
||||
#ifndef LLD_DRIVER_DARWIN_INPUT_GRAPH_H
|
||||
#define LLD_DRIVER_DARWIN_INPUT_GRAPH_H
|
||||
|
||||
#include "lld/Driver/InputGraph.h"
|
||||
#include "lld/ReaderWriter/MachOLinkingContext.h"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
//===- lld/Driver/GnuLdInputGraph.h - Files to be linked for ELF linking---===//
|
||||
//===- lld/Driver/GnuLdInputGraph.h - Input Graph Node for ELF linker------===//
|
||||
//
|
||||
// The LLVM Linker
|
||||
//
|
||||
|
@ -14,8 +14,8 @@
|
|||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLD_ELF_INPUT_GRAPH_H
|
||||
#define LLD_ELF_INPUT_GRAPH_H
|
||||
#ifndef LLD_DRIVER_GNU_LD_INPUT_GRAPH_H
|
||||
#define LLD_DRIVER_GNU_LD_INPUT_GRAPH_H
|
||||
|
||||
#include "lld/Driver/InputGraph.h"
|
||||
#include "lld/ReaderWriter/ELFLinkingContext.h"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
//===- lld/Core/InputGraph.h - Files to be linked -------------------------===//
|
||||
//===- lld/Core/InputGraph.h - Input Graph --------------------------------===//
|
||||
//
|
||||
// The LLVM Linker
|
||||
//
|
||||
|
@ -13,8 +13,8 @@
|
|||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLD_INPUTGRAPH_H
|
||||
#define LLD_INPUTGRAPH_H
|
||||
#ifndef LLD_DRIVER_INPUT_GRAPH_H
|
||||
#define LLD_DRIVER_INPUT_GRAPH_H
|
||||
|
||||
#include "lld/Core/File.h"
|
||||
#include "lld/Core/LLVM.h"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
//===- lld/Driver/WinLinkInputGraph.h - Files to be linked for PECOFF
|
||||
// linking---===//
|
||||
//===- lld/Driver/WinLinkInputGraph.h - Input Graph Node for COFF linker --===//
|
||||
//
|
||||
// The LLVM Linker
|
||||
//
|
||||
|
@ -15,8 +14,8 @@
|
|||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLD_PECOFF_INPUT_GRAPH_H
|
||||
#define LLD_PECOFF_INPUT_GRAPH_H
|
||||
#ifndef LLD_DRIVER_WIN_LINK_INPUT_GRAPH_H
|
||||
#define LLD_DRIVER_WIN_LINK_INPUT_GRAPH_H
|
||||
|
||||
#include "lld/Driver/InputGraph.h"
|
||||
#include "lld/ReaderWriter/PECOFFLinkingContext.h"
|
||||
|
|
Loading…
Reference in New Issue