Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions SwiftCompilerSources/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ else()
")
add_custom_command(
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/HeaderDependencies.cpp"
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/HeaderDependencies.cpp.tmp"
COMMAND ${CMAKE_COMMAND} -E copy_if_different
"${CMAKE_CURRENT_BINARY_DIR}/HeaderDependencies.cpp.tmp"
"${CMAKE_CURRENT_BINARY_DIR}/HeaderDependencies.cpp"
Expand Down
5 changes: 0 additions & 5 deletions include/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,3 @@ module OptimizerBridging {
header "swift/SILOptimizer/OptimizerBridging.h"
export *
}

module _RegexParserBridging {
header "swift/Parse/RegexParserBridging.h"
export *
}
64 changes: 0 additions & 64 deletions include/swift/Parse/RegexParserBridging.h

This file was deleted.

1 change: 0 additions & 1 deletion lib/ASTGen/Sources/ASTGen/Regex.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
//
//===----------------------------------------------------------------------===//

import _RegexParserBridging
import ASTBridging
import BasicBridging

Expand Down
1 change: 0 additions & 1 deletion lib/Parse/Lexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#include "swift/Basic/SourceManager.h"
#include "swift/Bridging/ASTGen.h"
#include "swift/Parse/Confusables.h"
#include "swift/Parse/RegexParserBridging.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/StringSwitch.h"
#include "llvm/ADT/Twine.h"
Expand Down
3 changes: 2 additions & 1 deletion stdlib/cmake/modules/SwiftSource.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,8 @@ function(_compile_swift_files
add_custom_command_target(unused_var
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${file_path}.tmp" "${file_path}"
CUSTOM_TARGET_NAME ${file_path_target}
OUTPUT "${file_path}")
OUTPUT "${file_path}"
DEPENDS "${file_path}.tmp")
endif()

# If this platform/architecture combo supports backward deployment to old
Expand Down