diff options
| author | Ted Kremenek <kremenek@apple.com> | 2007-10-25 16:09:09 +0000 | 
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2007-10-25 16:09:09 +0000 | 
| commit | 93345274c2b2fc5eb6258e1009f943dc5fce11ca (patch) | |
| tree | 8f3c7ee89db0ff31f8123f12f4e0d6cac98d0e28 /llvm/Xcode | |
| parent | bd8497b011a59a559d4149c54c3021e2893366bc (diff) | |
| download | bcm5719-llvm-93345274c2b2fc5eb6258e1009f943dc5fce11ca.tar.gz bcm5719-llvm-93345274c2b2fc5eb6258e1009f943dc5fce11ca.zip  | |
Added Serialization.h, Serialize.h, Deserialize.h, Serialize.cpp, and
Deserialize.cpp to the XCode project.
llvm-svn: 43345
Diffstat (limited to 'llvm/Xcode')
| -rw-r--r-- | llvm/Xcode/LLVM.xcodeproj/project.pbxproj | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/Xcode/LLVM.xcodeproj/project.pbxproj b/llvm/Xcode/LLVM.xcodeproj/project.pbxproj index 5138a4d7c21..99b67b981c6 100644 --- a/llvm/Xcode/LLVM.xcodeproj/project.pbxproj +++ b/llvm/Xcode/LLVM.xcodeproj/project.pbxproj @@ -65,6 +65,11 @@  /* End PBXContainerItemProxy section */  /* Begin PBXFileReference section */ +		35A9CDED0CD0F6AF008ABC1D /* Deserialize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Deserialize.h; sourceTree = "<group>"; }; +		35A9CDEE0CD0F6AF008ABC1D /* Serialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Serialization.h; sourceTree = "<group>"; }; +		35A9CDEF0CD0F6AF008ABC1D /* Serialize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Serialize.h; sourceTree = "<group>"; }; +		35A9CDF00CD0F6D5008ABC1D /* Deserialize.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Deserialize.cpp; sourceTree = "<group>"; }; +		35A9CDF10CD0F6E1008ABC1D /* Serialize.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Serialize.cpp; sourceTree = "<group>"; };  		35E98A830CBC2ED300C5CDC1 /* DenseSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DenseSet.h; sourceTree = "<group>"; };  		35E98A840CBC2ED300C5CDC1 /* ImmutableMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImmutableMap.h; sourceTree = "<group>"; };  		35E98A850CBC2ED300C5CDC1 /* ImmutableSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImmutableSet.h; sourceTree = "<group>"; }; @@ -1099,6 +1104,7 @@  		9F68EB050C77AD2C004AA152 /* Reader */ = {  			isa = PBXGroup;  			children = ( +				35A9CDF00CD0F6D5008ABC1D /* Deserialize.cpp */,  				9F68EB060C77AD2C004AA152 /* BitcodeReader.cpp */,  				9F68EB070C77AD2C004AA152 /* BitcodeReader.h */,  			); @@ -1113,6 +1119,7 @@  				9F68EB130C77AD2C004AA152 /* BitcodeWriterPass.cpp */,  				9F68EB250C77AD2C004AA152 /* ValueEnumerator.cpp */,  				9F68EB260C77AD2C004AA152 /* ValueEnumerator.h */, +				35A9CDF10CD0F6E1008ABC1D /* Serialize.cpp */,  			);  			path = Writer;  			sourceTree = "<group>"; @@ -1126,6 +1133,9 @@  				9F7793830C73C54C00551F9C /* BitstreamWriter.h */,  				9F7793840C73C54C00551F9C /* LLVMBitCodes.h */,  				9F7793850C73C54C00551F9C /* ReaderWriter.h */, +				35A9CDEE0CD0F6AF008ABC1D /* Serialization.h */, +				35A9CDEF0CD0F6AF008ABC1D /* Serialize.h */, +				35A9CDED0CD0F6AF008ABC1D /* Deserialize.h */,  			);  			path = Bitcode;  			sourceTree = "<group>";  | 

