From: Chris Lattner Date: Wed, 7 Jul 2004 06:29:26 +0000 (+0000) Subject: Move DSA headers into Analysis/DataStructure to make it more obvious X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6c49989b3e4b5d50cc8c25a02d4a0e66e312523f;p=oota-llvm.git 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 --- diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h index 3d9e4187d8a..81c12fcad65 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 017d86f0b54..608cd198efc 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 4c6480d0077..27ae67ee1dd 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 {