From 962b0c7740684528755b08838766795c7e47308e Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Thu, 15 Jan 2015 08:58:38 +0000 Subject: [PATCH] Rename InputGraph.h -> Node.h. llvm-svn: 226154 --- lld/include/lld/Core/LinkingContext.h | 2 +- lld/include/lld/Core/{InputGraph.h => Node.h} | 10 +++++----- lld/include/lld/Driver/Driver.h | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) rename lld/include/lld/Core/{InputGraph.h => Node.h} (88%) diff --git a/lld/include/lld/Core/LinkingContext.h b/lld/include/lld/Core/LinkingContext.h index 1bd4f97e3d28..24108fbb9e5e 100644 --- a/lld/include/lld/Core/LinkingContext.h +++ b/lld/include/lld/Core/LinkingContext.h @@ -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" diff --git a/lld/include/lld/Core/InputGraph.h b/lld/include/lld/Core/Node.h similarity index 88% rename from lld/include/lld/Core/InputGraph.h rename to lld/include/lld/Core/Node.h index afb04c27927f..5bc09194814d 100644 --- a/lld/include/lld/Core/InputGraph.h +++ b/lld/include/lld/Core/Node.h @@ -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 diff --git a/lld/include/lld/Driver/Driver.h b/lld/include/lld/Driver/Driver.h index 2e7ea37a2d8c..75717553e484 100644 --- a/lld/include/lld/Driver/Driver.h +++ b/lld/include/lld/Driver/Driver.h @@ -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