aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/DataStructure
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-07-07 06:29:26 +0000
committerChris Lattner <sabre@nondot.org>2004-07-07 06:29:26 +0000
commit6c49989b3e4b5d50cc8c25a02d4a0e66e312523f (patch)
treeb1517c8c0c1f4e5b0b1a5bc744e73f2b56d8d8b8 /include/llvm/Analysis/DataStructure
parenteaef5685b8c5185b13623ef7e65b5afe8f7ee31c (diff)
Move DSA headers into Analysis/DataStructure to make it more obvious
what is implemented by the DataStructure library. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14662 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/DataStructure')
-rw-r--r--include/llvm/Analysis/DataStructure/DSGraph.h2
-rw-r--r--include/llvm/Analysis/DataStructure/DSGraphTraits.h2
-rw-r--r--include/llvm/Analysis/DataStructure/DSNode.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h
index 3d9e4187d8..81c12fcad6 100644
--- a/include/llvm/Analysis/DataStructure/DSGraph.h
+++ b/include/llvm/Analysis/DataStructure/DSGraph.h
@@ -15,7 +15,7 @@
#ifndef LLVM_ANALYSIS_DSGRAPH_H
#define LLVM_ANALYSIS_DSGRAPH_H
-#include "llvm/Analysis/DSNode.h"
+#include "llvm/Analysis/DataStructure/DSNode.h"
namespace llvm {
diff --git a/include/llvm/Analysis/DataStructure/DSGraphTraits.h b/include/llvm/Analysis/DataStructure/DSGraphTraits.h
index 017d86f0b5..608cd198ef 100644
--- a/include/llvm/Analysis/DataStructure/DSGraphTraits.h
+++ b/include/llvm/Analysis/DataStructure/DSGraphTraits.h
@@ -16,7 +16,7 @@
#ifndef LLVM_ANALYSIS_DSGRAPHTRAITS_H
#define LLVM_ANALYSIS_DSGRAPHTRAITS_H
-#include "llvm/Analysis/DSGraph.h"
+#include "llvm/Analysis/DataStructure/DSGraph.h"
#include "Support/GraphTraits.h"
#include "Support/iterator"
#include "Support/STLExtras.h"
diff --git a/include/llvm/Analysis/DataStructure/DSNode.h b/include/llvm/Analysis/DataStructure/DSNode.h
index 4c6480d007..27ae67ee1d 100644
--- a/include/llvm/Analysis/DataStructure/DSNode.h
+++ b/include/llvm/Analysis/DataStructure/DSNode.h
@@ -14,7 +14,7 @@
#ifndef LLVM_ANALYSIS_DSNODE_H
#define LLVM_ANALYSIS_DSNODE_H
-#include "llvm/Analysis/DSSupport.h"
+#include "llvm/Analysis/DataStructure/DSSupport.h"
namespace llvm {