diff options
| author | Rui Ueyama <ruiu@google.com> | 2015-01-15 08:58:38 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2015-01-15 08:58:38 +0000 |
| commit | 962b0c7740684528755b08838766795c7e47308e (patch) | |
| tree | bf2aea4db73f9971ca643281b8febbbeee6d68b0 | |
| parent | ae1daae46132170039ee2631c29cd36e8df4d0e8 (diff) | |
| download | bcm5719-llvm-962b0c7740684528755b08838766795c7e47308e.tar.gz bcm5719-llvm-962b0c7740684528755b08838766795c7e47308e.zip | |
Rename InputGraph.h -> Node.h.
llvm-svn: 226154
| -rw-r--r-- | lld/include/lld/Core/LinkingContext.h | 2 | ||||
| -rw-r--r-- | lld/include/lld/Core/Node.h (renamed from lld/include/lld/Core/InputGraph.h) | 10 | ||||
| -rw-r--r-- | lld/include/lld/Driver/Driver.h | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/lld/include/lld/Core/LinkingContext.h b/lld/include/lld/Core/LinkingContext.h index 1bd4f97e3d2..24108fbb9e5 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 index afb04c27927..5bc09194814 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 2e7ea37a2d8..75717553e48 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 <memory> |

