Skip to content

Commit 200b181

Browse files
author
David Ungar
committed
Renaming files -> CoarseGrained
1 parent 380d0d9 commit 200b181

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

include/swift/Driver/DependencyGraph.h renamed to include/swift/Driver/CoarseGrainedDependencyGraph.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- DependencyGraph.h - Track intra-module dependencies ----*- C++ -*-===//
1+
//===- CoarseGrainedDependencyGraph.h - Track intra-module dependencies -*- C++ -*-===//
22
//
33
// This source file is part of the Swift.org open source project
44
//
@@ -10,8 +10,8 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
#ifndef SWIFT_DRIVER_DEPENDENCYGRAPH_H
14-
#define SWIFT_DRIVER_DEPENDENCYGRAPH_H
13+
#ifndef SWIFT_DRIVER_COARSEGRAINEDDEPENDENCYGRAPH_H
14+
#define SWIFT_DRIVER_COARSEGRAINEDDEPENDENCYGRAPH_H
1515

1616
#include "swift/AST/DiagnosticEngine.h"
1717
#include "swift/Basic/LLVM.h"

include/swift/Driver/FineGrainedDependencyDriverGraph.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "swift/Basic/Debug.h"
1818
#include "swift/Basic/LLVM.h"
1919
#include "swift/Basic/OptionSet.h"
20-
#include "swift/Driver/DependencyGraph.h"
20+
#include "swift/Driver/CoarseGrainedDependencyGraph.h"
2121
#include "swift/Driver/Job.h"
2222
#include "llvm/ADT/ArrayRef.h"
2323
#include "llvm/ADT/DenseMap.h"

lib/Basic/Statistic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include "swift/AST/Decl.h"
1919
#include "swift/AST/Expr.h"
2020
#include "swift/SIL/SILFunction.h"
21-
#include "swift/Driver/DependencyGraph.h"
21+
#include "swift/Driver/CoarseGrainedDependencyGraph.h"
2222
#include "llvm/ADT/DenseMap.h"
2323
#include "llvm/Config/config.h"
2424
#include "llvm/Support/FileSystem.h"

lib/Driver/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
set(swiftDriver_sources
22
Action.cpp
3+
CoarseGrainedDependencyGraph.cpp
34
Compilation.cpp
45
DarwinToolChains.cpp
5-
DependencyGraph.cpp
66
SourceComparator.cpp
77
Driver.cpp
88
DriverIncrementalRanges.cpp

lib/Driver/DependencyGraph.cpp renamed to lib/Driver/CoarseGrainedDependencyGraph.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- DependencyGraph.cpp - Track intra-module dependencies ------------===//
1+
//===- CoarseGrainedDependencyGraph.cpp - Track intra-module dependencies -===//
22
//
33
// This source file is part of the Swift.org open source project
44
//
@@ -12,7 +12,7 @@
1212

1313
#include "swift/Basic/ReferenceDependencyKeys.h"
1414
#include "swift/Basic/Statistic.h"
15-
#include "swift/Driver/DependencyGraph.h"
15+
#include "swift/Driver/CoarseGrainedDependencyGraph.h"
1616
#include "swift/Demangling/Demangle.h"
1717
#include "llvm/ADT/SmallString.h"
1818
#include "llvm/ADT/SmallVector.h"

lib/Driver/Compilation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include "swift/Basic/Version.h"
2424
#include "swift/Basic/type_traits.h"
2525
#include "swift/Driver/Action.h"
26-
#include "swift/Driver/DependencyGraph.h"
26+
#include "swift/Driver/CoarseGrainedDependencyGraph.h"
2727
#include "swift/Driver/Driver.h"
2828
#include "swift/Driver/DriverIncrementalRanges.h"
2929
#include "swift/Driver/FineGrainedDependencyDriverGraph.h"

unittests/Driver/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
add_swift_unittest(SwiftDriverTests
2-
DependencyGraphTests.cpp
2+
CoarseGrainedDependencyGraphTests.cpp
33
)
44

55
target_link_libraries(SwiftDriverTests

unittests/Driver/DependencyGraphTests.cpp renamed to unittests/Driver/CoarseGrainedDependencyGraphTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include "swift/Basic/ReferenceDependencyKeys.h"
2-
#include "swift/Driver/DependencyGraph.h"
2+
#include "swift/Driver/CoarseGrainedDependencyGraph.h"
33
#include "gtest/gtest.h"
44

55
using namespace swift;

0 commit comments

Comments
 (0)