Skip to content

Commit adcf0f5

Browse files
committed
---
yaml --- r: 343506 b: refs/heads/master-rebranch c: 75f4625 h: refs/heads/master
1 parent 609e7e2 commit adcf0f5

File tree

15 files changed

+18
-3
lines changed

15 files changed

+18
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1455,7 +1455,7 @@ refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-08-02-a: ddd2b2976aa9bfde5f20fe37f6bd2
14551455
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-08-03-a: 171cc166f2abeb5ca2a4003700a8a78a108bd300
14561456
refs/heads/benlangmuir-patch-1: baaebaf39d52f3bf36710d4fe40cf212e996b212
14571457
refs/heads/i-do-redeclare: 8c4e6d5de5c1e3f0a2cedccf319df713ea22c48e
1458-
refs/heads/master-rebranch: 22cb6f117605ff6da93cfb4442d9da94cd7369e6
1458+
refs/heads/master-rebranch: 75f4625bee530aed8a1bedd9523d68b26ddd2de1
14591459
refs/heads/rdar-53901732: 9bd06af3284e18a109cdbf9aa59d833b24eeca7b
14601460
refs/heads/revert-26776-subst-always-returns-a-type: 1b8e18fdd391903a348970a4c848995d4cdd789c
14611461
refs/heads/tensorflow-merge: 8b854f62f80d4476cb383d43c4aac2001dde3cec

branches/master-rebranch/include/swift/AST/ASTContext.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
#ifndef SWIFT_AST_ASTCONTEXT_H
1818
#define SWIFT_AST_ASTCONTEXT_H
1919

20-
#include "swift/AST/ClangModuleLoader.h"
2120
#include "swift/AST/Evaluator.h"
2221
#include "swift/AST/GenericSignature.h"
2322
#include "swift/AST/Identifier.h"
@@ -32,6 +31,7 @@
3231
#include "llvm/ADT/MapVector.h"
3332
#include "llvm/ADT/PointerIntPair.h"
3433
#include "llvm/ADT/SetVector.h"
34+
#include "llvm/ADT/SmallPtrSet.h"
3535
#include "llvm/ADT/StringMap.h"
3636
#include "llvm/ADT/TinyPtrVector.h"
3737
#include "llvm/Support/Allocator.h"
@@ -49,10 +49,12 @@ namespace clang {
4949
}
5050

5151
namespace swift {
52+
class AbstractFunctionDecl;
5253
class ASTContext;
5354
enum class Associativity : unsigned char;
5455
class AvailabilityContext;
5556
class BoundGenericType;
57+
class ClangModuleLoader;
5658
class ClangNode;
5759
class ConcreteDeclRef;
5860
class ConstructorDecl;

branches/master-rebranch/lib/AST/ASTContext.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "swift/AST/ASTContext.h"
1818
#include "ForeignRepresentationInfo.h"
1919
#include "SubstitutionMapStorage.h"
20+
#include "swift/AST/ClangModuleLoader.h"
2021
#include "swift/AST/ConcreteDeclRef.h"
2122
#include "swift/AST/DiagnosticEngine.h"
2223
#include "swift/AST/DiagnosticsSema.h"

branches/master-rebranch/lib/AST/ImportCache.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
#include "llvm/ADT/DenseSet.h"
1919
#include "swift/AST/ASTContext.h"
20+
#include "swift/AST/ClangModuleLoader.h"
2021
#include "swift/AST/ImportCache.h"
2122
#include "swift/AST/Module.h"
2223

branches/master-rebranch/lib/AST/ModuleNameLookup.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
#include "swift/AST/ModuleNameLookup.h"
1414
#include "swift/AST/ASTContext.h"
15+
#include "swift/AST/ClangModuleLoader.h"
1516
#include "swift/AST/ImportCache.h"
1617
#include "swift/AST/NameLookup.h"
1718
#include "llvm/Support/raw_ostream.h"

branches/master-rebranch/lib/AST/USRGeneration.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
//===----------------------------------------------------------------------===//
1212

1313
#include "swift/AST/ASTContext.h"
14+
#include "swift/AST/ClangModuleLoader.h"
1415
#include "swift/AST/Module.h"
1516
#include "swift/AST/USRGeneration.h"
1617
#include "swift/AST/ASTMangler.h"

branches/master-rebranch/lib/ClangImporter/ClangImporter.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "ClangDiagnosticConsumer.h"
2121
#include "swift/Subsystems.h"
2222
#include "swift/AST/ASTContext.h"
23+
#include "swift/AST/ClangModuleLoader.h"
2324
#include "swift/AST/DiagnosticEngine.h"
2425
#include "swift/AST/DiagnosticsClangImporter.h"
2526
#include "swift/AST/ImportCache.h"

branches/master-rebranch/lib/ClangImporter/ImportDecl.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include "swift/AST/ASTMangler.h"
2222
#include "swift/AST/Attr.h"
2323
#include "swift/AST/Builtins.h"
24+
#include "swift/AST/ClangModuleLoader.h"
2425
#include "swift/AST/Decl.h"
2526
#include "swift/AST/DiagnosticsClangImporter.h"
2627
#include "swift/AST/ExistentialLayout.h"

branches/master-rebranch/lib/Parse/ParseStmt.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include "swift/Subsystems.h"
2727
#include "swift/Syntax/TokenSyntax.h"
2828
#include "llvm/ADT/PointerUnion.h"
29+
#include "llvm/ADT/SmallSet.h"
2930
#include "llvm/ADT/Twine.h"
3031
#include "llvm/Support/Compiler.h"
3132
#include "llvm/Support/SaveAndRestore.h"

branches/master-rebranch/lib/SIL/AbstractionPattern.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "swift/AST/Decl.h"
2121
#include "swift/AST/ForeignErrorConvention.h"
2222
#include "swift/AST/GenericSignature.h"
23+
#include "swift/AST/ModuleLoader.h"
2324
#include "swift/SIL/TypeLowering.h"
2425
#include "clang/AST/ASTContext.h"
2526
#include "clang/AST/Attr.h"

branches/master-rebranch/lib/SIL/Bridging.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
#include "swift/SIL/SILModule.h"
2121
#include "swift/AST/Decl.h"
2222
#include "swift/AST/DiagnosticsSIL.h"
23-
#include "swift/AST/ProtocolConformance.h"
2423
#include "swift/AST/Module.h"
24+
#include "swift/AST/ModuleLoader.h"
25+
#include "swift/AST/ProtocolConformance.h"
2526
#include "clang/AST/DeclObjC.h"
2627
#include "llvm/Support/Debug.h"
2728
#include "llvm/Support/ErrorHandling.h"

branches/master-rebranch/lib/SIL/SILFunctionType.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include "swift/AST/ForeignInfo.h"
2424
#include "swift/AST/GenericEnvironment.h"
2525
#include "swift/AST/Module.h"
26+
#include "swift/AST/ModuleLoader.h"
2627
#include "swift/AST/ProtocolConformance.h"
2728
#include "swift/SIL/SILModule.h"
2829
#include "swift/SIL/SILType.h"

branches/master-rebranch/lib/SILGen/SILGenApply.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include "swift/AST/GenericSignature.h"
3030
#include "swift/AST/ParameterList.h"
3131
#include "swift/AST/Module.h"
32+
#include "swift/AST/ModuleLoader.h"
3233
#include "swift/AST/SubstitutionMap.h"
3334
#include "swift/Basic/ExternalUnion.h"
3435
#include "swift/Basic/Range.h"

branches/master-rebranch/lib/SILGen/SILGenBridging.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "swift/AST/ExistentialLayout.h"
2121
#include "swift/AST/ForeignErrorConvention.h"
2222
#include "swift/AST/GenericEnvironment.h"
23+
#include "swift/AST/ModuleLoader.h"
2324
#include "swift/AST/ParameterList.h"
2425
#include "swift/AST/ProtocolConformance.h"
2526
#include "swift/SIL/SILArgument.h"

branches/master-rebranch/lib/SILGen/SILGenFunction.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "RValue.h"
2020
#include "SILGenFunctionBuilder.h"
2121
#include "Scope.h"
22+
#include "swift/AST/ClangModuleLoader.h"
2223
#include "swift/AST/Initializer.h"
2324
#include "swift/AST/PropertyWrappers.h"
2425
#include "swift/SIL/SILArgument.h"

0 commit comments

Comments
 (0)