Skip to content

[SIL] [Parser] Move ParserSIL into SIL library. #31003

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 14, 2020
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: 0 additions & 1 deletion lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ add_subdirectory(Markup)
add_subdirectory(Migrator)
add_subdirectory(Option)
add_subdirectory(Parse)
add_subdirectory(ParseSIL)
add_subdirectory(PrintAsObjC)
add_subdirectory(RemoteAST)
add_subdirectory(Sema)
Expand Down
1 change: 0 additions & 1 deletion lib/Frontend/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ target_link_libraries(swiftFrontend PRIVATE
swiftSIL
swiftMigrator
swiftOption
swiftParseSIL
swiftSILGen
swiftSILOptimizer
swiftIRGen
Expand Down
7 changes: 0 additions & 7 deletions lib/ParseSIL/CMakeLists.txt

This file was deleted.

1 change: 1 addition & 0 deletions lib/SIL/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ endmacro()
add_subdirectory(IR)
add_subdirectory(Utils)
add_subdirectory(Verifier)
add_subdirectory(Parser)

add_swift_host_library(swiftSIL STATIC
${SIL_SOURCES})
Expand Down
4 changes: 4 additions & 0 deletions lib/SIL/Parser/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sil_register_sources(
ParseSIL.cpp
)

File renamed without changes.
1 change: 0 additions & 1 deletion tools/SourceKit/lib/SwiftLang/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ target_link_libraries(SourceKitSwiftLang PRIVATE
swiftAST
swiftMarkup
swiftParse
swiftParseSIL
swiftSIL
swiftSILGen
swiftSILOptimizer
Expand Down