forked from OSchip/llvm-project
Rename Chunks.(h|cpp) to InputSection.(h|cpp). NFC.
llvm-svn: 248226
This commit is contained in:
parent
9640173e16
commit
9d06ab6ded
|
@ -3,11 +3,11 @@ tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
|||
add_public_tablegen_target(ELFOptionsTableGen)
|
||||
|
||||
add_llvm_library(lldELF2
|
||||
Chunks.cpp
|
||||
Driver.cpp
|
||||
DriverUtils.cpp
|
||||
Error.cpp
|
||||
InputFiles.cpp
|
||||
InputSection.cpp
|
||||
OutputSections.cpp
|
||||
SymbolTable.cpp
|
||||
Symbols.cpp
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "InputFiles.h"
|
||||
#include "Chunks.h"
|
||||
#include "InputSection.h"
|
||||
#include "Error.h"
|
||||
#include "Symbols.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#ifndef LLD_ELF_INPUT_FILES_H
|
||||
#define LLD_ELF_INPUT_FILES_H
|
||||
|
||||
#include "Chunks.h"
|
||||
#include "InputSection.h"
|
||||
#include "Error.h"
|
||||
#include "Symbols.h"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
//===- Chunks.cpp ---------------------------------------------------------===//
|
||||
//===- InputSection.cpp ---------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Linker
|
||||
//
|
||||
|
@ -7,7 +7,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Chunks.h"
|
||||
#include "InputSection.h"
|
||||
#include "Error.h"
|
||||
#include "InputFiles.h"
|
||||
#include "OutputSections.h"
|
|
@ -1,4 +1,4 @@
|
|||
//===- Chunks.h -------------------------------------------------*- C++ -*-===//
|
||||
//===- InputSection.h -------------------------------------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Linker
|
||||
//
|
||||
|
@ -7,8 +7,8 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLD_ELF_CHUNKS_H
|
||||
#define LLD_ELF_CHUNKS_H
|
||||
#ifndef LLD_ELF_INPUT_SECTION_H
|
||||
#define LLD_ELF_INPUT_SECTION_H
|
||||
|
||||
#include "lld/Core/LLVM.h"
|
||||
#include "llvm/Object/ELF.h"
|
|
@ -8,7 +8,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Symbols.h"
|
||||
#include "Chunks.h"
|
||||
#include "InputSection.h"
|
||||
#include "Error.h"
|
||||
#include "InputFiles.h"
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#ifndef LLD_ELF_SYMBOLS_H
|
||||
#define LLD_ELF_SYMBOLS_H
|
||||
|
||||
#include "Chunks.h"
|
||||
#include "InputSection.h"
|
||||
|
||||
#include "lld/Core/LLVM.h"
|
||||
#include "llvm/Object/Archive.h"
|
||||
|
|
Loading…
Reference in New Issue