Rename InputGraph.h -> Node.h.
authorRui Ueyama <ruiu@google.com>
Thu, 15 Jan 2015 08:58:38 +0000 (08:58 +0000)
committerRui Ueyama <ruiu@google.com>
Thu, 15 Jan 2015 08:58:38 +0000 (08:58 +0000)
llvm-svn: 226154

lld/include/lld/Core/LinkingContext.h
lld/include/lld/Core/Node.h [moved from lld/include/lld/Core/InputGraph.h with 88% similarity]
lld/include/lld/Driver/Driver.h

index 1bd4f97..24108fb 100644 (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"
similarity index 88%
rename from lld/include/lld/Core/InputGraph.h
rename to lld/include/lld/Core/Node.h
index afb04c2..5bc0919 100644 (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
index 2e7ea37..7571755 100644 (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>