[PATCH] D104119: [IR] Remove forward declaration of GraphTraits from Type.h
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 15 01:24:08 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf5dc511c5387: [IR] Remove forward declaration of GraphTraits from Type.h (authored by foad).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D104119/new/
https://reviews.llvm.org/D104119
Files:
llvm/include/llvm/Analysis/LazyCallGraph.h
llvm/include/llvm/IR/ModuleSummaryIndex.h
llvm/include/llvm/IR/Type.h
Index: llvm/include/llvm/IR/Type.h
===================================================================
--- llvm/include/llvm/IR/Type.h
+++ llvm/include/llvm/IR/Type.h
@@ -28,7 +28,6 @@
namespace llvm {
-template<class GraphType> struct GraphTraits;
class IntegerType;
class LLVMContext;
class PointerType;
Index: llvm/include/llvm/IR/ModuleSummaryIndex.h
===================================================================
--- llvm/include/llvm/IR/ModuleSummaryIndex.h
+++ llvm/include/llvm/IR/ModuleSummaryIndex.h
@@ -45,6 +45,8 @@
namespace llvm {
+template <class GraphType> struct GraphTraits;
+
namespace yaml {
template <typename T> struct MappingTraits;
Index: llvm/include/llvm/Analysis/LazyCallGraph.h
===================================================================
--- llvm/include/llvm/Analysis/LazyCallGraph.h
+++ llvm/include/llvm/Analysis/LazyCallGraph.h
@@ -60,6 +60,7 @@
namespace llvm {
+template <class GraphType> struct GraphTraits;
class Module;
class Value;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104119.352058.patch
Type: text/x-patch
Size: 1009 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210615/6ca3435e/attachment.bin>
More information about the llvm-commits
mailing list