Rename Chunks.(h|cpp) to InputSection.(h|cpp). NFC.

llvm-svn: 248226
This commit is contained in:
Rafael Espindola 2015-09-22 00:01:39 +00:00
parent 9640173e16
commit 9d06ab6ded
7 changed files with 10 additions and 10 deletions

View File

@ -3,11 +3,11 @@ tablegen(LLVM Options.inc -gen-opt-parser-defs)
add_public_tablegen_target(ELFOptionsTableGen) add_public_tablegen_target(ELFOptionsTableGen)
add_llvm_library(lldELF2 add_llvm_library(lldELF2
Chunks.cpp
Driver.cpp Driver.cpp
DriverUtils.cpp DriverUtils.cpp
Error.cpp Error.cpp
InputFiles.cpp InputFiles.cpp
InputSection.cpp
OutputSections.cpp OutputSections.cpp
SymbolTable.cpp SymbolTable.cpp
Symbols.cpp Symbols.cpp

View File

@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "InputFiles.h" #include "InputFiles.h"
#include "Chunks.h" #include "InputSection.h"
#include "Error.h" #include "Error.h"
#include "Symbols.h" #include "Symbols.h"
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"

View File

@ -10,7 +10,7 @@
#ifndef LLD_ELF_INPUT_FILES_H #ifndef LLD_ELF_INPUT_FILES_H
#define LLD_ELF_INPUT_FILES_H #define LLD_ELF_INPUT_FILES_H
#include "Chunks.h" #include "InputSection.h"
#include "Error.h" #include "Error.h"
#include "Symbols.h" #include "Symbols.h"

View File

@ -1,4 +1,4 @@
//===- Chunks.cpp ---------------------------------------------------------===// //===- InputSection.cpp ---------------------------------------------------===//
// //
// The LLVM Linker // The LLVM Linker
// //
@ -7,7 +7,7 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "Chunks.h" #include "InputSection.h"
#include "Error.h" #include "Error.h"
#include "InputFiles.h" #include "InputFiles.h"
#include "OutputSections.h" #include "OutputSections.h"

View File

@ -1,4 +1,4 @@
//===- Chunks.h -------------------------------------------------*- C++ -*-===// //===- InputSection.h -------------------------------------------*- C++ -*-===//
// //
// The LLVM Linker // The LLVM Linker
// //
@ -7,8 +7,8 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#ifndef LLD_ELF_CHUNKS_H #ifndef LLD_ELF_INPUT_SECTION_H
#define LLD_ELF_CHUNKS_H #define LLD_ELF_INPUT_SECTION_H
#include "lld/Core/LLVM.h" #include "lld/Core/LLVM.h"
#include "llvm/Object/ELF.h" #include "llvm/Object/ELF.h"

View File

@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "Symbols.h" #include "Symbols.h"
#include "Chunks.h" #include "InputSection.h"
#include "Error.h" #include "Error.h"
#include "InputFiles.h" #include "InputFiles.h"

View File

@ -10,7 +10,7 @@
#ifndef LLD_ELF_SYMBOLS_H #ifndef LLD_ELF_SYMBOLS_H
#define LLD_ELF_SYMBOLS_H #define LLD_ELF_SYMBOLS_H
#include "Chunks.h" #include "InputSection.h"
#include "lld/Core/LLVM.h" #include "lld/Core/LLVM.h"
#include "llvm/Object/Archive.h" #include "llvm/Object/Archive.h"