Rename InputGraph.h -> Node.h.

llvm-svn: 226154
This commit is contained in:
Rui Ueyama 2015-01-15 08:58:38 +00:00
parent ae1daae461
commit 962b0c7740
3 changed files with 7 additions and 7 deletions

View File

@ -11,8 +11,8 @@
#define LLD_CORE_LINKING_CONTEXT_H
#include "lld/Core/Error.h"
#include "lld/Core/InputGraph.h"
#include "lld/Core/LLVM.h"
#include "lld/Core/Node.h"
#include "lld/Core/Reference.h"
#include "lld/Core/range.h"
#include "lld/ReaderWriter/Reader.h"

View File

@ -1,4 +1,4 @@
//===- lld/Core/InputGraph.h - Input Graph --------------------------------===//
//===- lld/Core/Node.h - Input file class ---------------------------------===//
//
// The LLVM Linker
//
@ -9,12 +9,12 @@
///
/// \file
///
/// Inputs to the linker in the form of a Graph.
/// The classes in this file represents inputs to the linker.
///
//===----------------------------------------------------------------------===//
#ifndef LLD_CORE_INPUT_GRAPH_H
#define LLD_CORE_INPUT_GRAPH_H
#ifndef LLD_CORE_NODE_H
#define LLD_CORE_NODE_H
#include "lld/Core/File.h"
#include "llvm/Option/ArgList.h"
@ -73,4 +73,4 @@ protected:
} // namespace lld
#endif // LLD_CORE_INPUT_GRAPH_H
#endif // LLD_CORE_NODE_H

View File

@ -17,8 +17,8 @@
#ifndef LLD_DRIVER_DRIVER_H
#define LLD_DRIVER_DRIVER_H
#include "lld/Core/InputGraph.h"
#include "lld/Core/LLVM.h"
#include "lld/Core/Node.h"
#include "llvm/ADT/Triple.h"
#include "llvm/Support/raw_ostream.h"
#include <memory>