diff options
author | Anders Carlsson <andersca@mac.com> | 2010-11-28 17:49:03 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-11-28 17:49:03 +0000 |
commit | fdee32f8ed08f78deba9c0791ffe5838da9836c0 (patch) | |
tree | 0439028f93b65046f29ec5e91d527c96e2ac651f /clang/clang.xcodeproj | |
parent | 81f6f3626eaed9d3f29f1d474ba629a93dfa9388 (diff) | |
download | bcm5719-llvm-fdee32f8ed08f78deba9c0791ffe5838da9836c0.tar.gz bcm5719-llvm-fdee32f8ed08f78deba9c0791ffe5838da9836c0.zip |
Move CGCXXABI functions to CGCXXABI.cpp
llvm-svn: 120250
Diffstat (limited to 'clang/clang.xcodeproj')
-rw-r--r-- | clang/clang.xcodeproj/project.pbxproj | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/clang.xcodeproj/project.pbxproj b/clang/clang.xcodeproj/project.pbxproj index 4e78f18dbfc..2042ea5071d 100644 --- a/clang/clang.xcodeproj/project.pbxproj +++ b/clang/clang.xcodeproj/project.pbxproj @@ -19,6 +19,7 @@ 1A2A54C50FD1DD1C00F4CE45 /* Warnings.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A2A54B40FD1DD1C00F4CE45 /* Warnings.cpp */; }; 1A30A9E90B93A4C800201A91 /* ExprCXX.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1A30A9E80B93A4C800201A91 /* ExprCXX.h */; }; 1A376A2D0D4AED9B002A1C52 /* CGExprConstant.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A376A2C0D4AED9B002A1C52 /* CGExprConstant.cpp */; }; + 1A3D2C4E12A2CD3D0088C44A /* CGCXXABI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A3D2C4D12A2CD3D0088C44A /* CGCXXABI.cpp */; }; 1A471AB50F437BC500753CE8 /* CGBlocks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A471AB40F437BC500753CE8 /* CGBlocks.cpp */; }; 1A4C41BF105B4C0B0047B5E7 /* CGClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A4C41BE105B4C0B0047B5E7 /* CGClass.cpp */; }; 1A5D5E580E5E81010023C059 /* CGCXX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A5D5E570E5E81010023C059 /* CGCXX.cpp */; }; @@ -447,6 +448,7 @@ 1A30A9E80B93A4C800201A91 /* ExprCXX.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 2; lastKnownFileType = sourcecode.c.h; name = ExprCXX.h; path = clang/AST/ExprCXX.h; sourceTree = "<group>"; tabWidth = 2; }; 1A31B27210ACE6DA009E0C8B /* GlobalDecl.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.h; name = GlobalDecl.h; path = lib/CodeGen/GlobalDecl.h; sourceTree = "<group>"; tabWidth = 2; }; 1A376A2C0D4AED9B002A1C52 /* CGExprConstant.cpp */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.cpp.cpp; name = CGExprConstant.cpp; path = lib/CodeGen/CGExprConstant.cpp; sourceTree = "<group>"; tabWidth = 2; }; + 1A3D2C4D12A2CD3D0088C44A /* CGCXXABI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CGCXXABI.cpp; path = lib/CodeGen/CGCXXABI.cpp; sourceTree = "<group>"; }; 1A471AB40F437BC500753CE8 /* CGBlocks.cpp */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.cpp.cpp; name = CGBlocks.cpp; path = lib/CodeGen/CGBlocks.cpp; sourceTree = "<group>"; tabWidth = 2; }; 1A4C41BE105B4C0B0047B5E7 /* CGClass.cpp */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.cpp.cpp; name = CGClass.cpp; path = lib/CodeGen/CGClass.cpp; sourceTree = "<group>"; tabWidth = 2; }; 1A535EDB107BC47B000C3AE7 /* CanonicalType.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 2; lastKnownFileType = sourcecode.c.h; name = CanonicalType.h; path = clang/AST/CanonicalType.h; sourceTree = "<group>"; tabWidth = 2; }; @@ -1573,6 +1575,7 @@ BF9FEE301225E86C003A8B71 /* CodeGenAction.cpp */, BF9FEE2F1225E854003A8B71 /* CGRecordLayout.h */, BF9FEE2E1225E82D003A8B71 /* CGException.h */, + 1A3D2C4D12A2CD3D0088C44A /* CGCXXABI.cpp */, BF9FEE2D1225E80F003A8B71 /* CGCXXABI.h */, BF9FEE2B1225E7EA003A8B71 /* BackendUtil.cpp */, 1A2193CB0F45EEB700C0713D /* ABIInfo.h */, @@ -2402,6 +2405,7 @@ 1AC1AD431299A287006FBC77 /* UnreachableCodeChecker.cpp in Sources */, 1AC1AD441299A287006FBC77 /* ValueManager.cpp in Sources */, 1AC1AD451299A287006FBC77 /* VLASizeChecker.cpp in Sources */, + 1A3D2C4E12A2CD3D0088C44A /* CGCXXABI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; |