From: Ted Kremenek Date: Tue, 25 Sep 2007 22:45:38 +0000 (+0000) Subject: Updated XCode project to reflect that DataflowValues.h and DataflowSolver.h have X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a68951260af1012fc0913e602694d1eb8a826e9f;p=clang Updated XCode project to reflect that DataflowValues.h and DataflowSolver.h have moved to include/clang/Analysis/FlowSensitive. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42327 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/clang.xcodeproj/project.pbxproj b/clang.xcodeproj/project.pbxproj index 443e9245e0..fca0464b47 100644 --- a/clang.xcodeproj/project.pbxproj +++ b/clang.xcodeproj/project.pbxproj @@ -225,12 +225,12 @@ 355CF6830C90A8D400A08AA3 /* DeadStores.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DeadStores.cpp; path = Analysis/DeadStores.cpp; sourceTree = ""; }; 356EF9B20C8F7DBA006650F5 /* LiveVariables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LiveVariables.h; path = clang/Analysis/LiveVariables.h; sourceTree = ""; }; 356EF9B40C8F7DDF006650F5 /* LiveVariables.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LiveVariables.cpp; path = Analysis/LiveVariables.cpp; sourceTree = ""; }; - 35AE0F650C9B4CA300CC1279 /* DataflowValues.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DataflowValues.h; path = clang/Analysis/DataflowValues.h; sourceTree = ""; }; 35AE0F660C9B4CA300CC1279 /* UninitializedValues.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UninitializedValues.h; path = clang/Analysis/UninitializedValues.h; sourceTree = ""; }; - 35AE0F670C9B4CC200CC1279 /* DataflowSolver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DataflowSolver.h; path = Analysis/DataflowSolver.h; sourceTree = ""; }; 35BFBD2B0C9EDE1E006CB644 /* ASTConsumer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ASTConsumer.h; path = clang/AST/ASTConsumer.h; sourceTree = ""; }; 35CFFDFF0CA1CBCB00E6F2BE /* StmtViz.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = StmtViz.cpp; path = AST/StmtViz.cpp; sourceTree = ""; }; 35CFFE010CA1CBDD00E6F2BE /* StmtGraphTraits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StmtGraphTraits.h; path = clang/AST/StmtGraphTraits.h; sourceTree = ""; }; + 35D1DDD10CA9C6D50096E967 /* DataflowSolver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DataflowSolver.h; path = clang/Analysis/FlowSensitive/DataflowSolver.h; sourceTree = ""; }; + 35D1DDD20CA9C6D50096E967 /* DataflowValues.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DataflowValues.h; path = clang/Analysis/FlowSensitive/DataflowValues.h; sourceTree = ""; }; 84D9A8870C1A57E100AC7ABC /* AttributeList.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = AttributeList.cpp; path = Parse/AttributeList.cpp; sourceTree = ""; }; 84D9A88B0C1A581300AC7ABC /* AttributeList.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = AttributeList.h; path = clang/Parse/AttributeList.h; sourceTree = ""; }; 8DD76F6C0486A84900D96B5E /* clang */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = clang; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -422,11 +422,11 @@ 356EF9AF0C8F7DA4006650F5 /* Analysis */ = { isa = PBXGroup; children = ( - 35AE0F650C9B4CA300CC1279 /* DataflowValues.h */, + 35D1DDCF0CA9C6BE0096E967 /* FlowSensitive */, + 352C19DB0CA321AC0045DB98 /* Visitors */, 356EF9B20C8F7DBA006650F5 /* LiveVariables.h */, 35AE0F660C9B4CA300CC1279 /* UninitializedValues.h */, 355CF6820C90A8B600A08AA3 /* LocalCheckers.h */, - 352C19DB0CA321AC0045DB98 /* Visitors */, ); name = Analysis; sourceTree = ""; @@ -434,13 +434,21 @@ 356EF9B30C8F7DCA006650F5 /* Analysis */ = { isa = PBXGroup; children = ( - 35AE0F670C9B4CC200CC1279 /* DataflowSolver.h */, 356EF9B40C8F7DDF006650F5 /* LiveVariables.cpp */, 355CF6850C90A8D600A08AA3 /* LocalCheckers */, ); name = Analysis; sourceTree = ""; }; + 35D1DDCF0CA9C6BE0096E967 /* FlowSensitive */ = { + isa = PBXGroup; + children = ( + 35D1DDD10CA9C6D50096E967 /* DataflowSolver.h */, + 35D1DDD20CA9C6D50096E967 /* DataflowValues.h */, + ); + name = FlowSensitive; + sourceTree = ""; + }; C6859E8C029090F304C91782 /* Documentation */ = { isa = PBXGroup; children = (