Fix file comments and include guard

llvm-svn: 191054
This commit is contained in:
Rui Ueyama 2013-09-19 23:34:20 +00:00
parent 89a4bc6dc3
commit dc30cdb18c
5 changed files with 15 additions and 17 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"