-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[cxx-interop][rebranch] Handle clang elaborated types properly #62190
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
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@swift-ci please smoke test |
@swift-ci please test |
9ddde90
to
9a6435a
Compare
@swift-ci please smoke test |
@swift-ci please test |
@swift-ci please test macOS |
Clang recently started wrapping more types in `clang::ElaboratedType` after this change: https://reviews.llvm.org/D112374 This broke some assumptions in ClangImporter, specifically in enum handling logic. This change adjusts those. Fixes these tests in rebranch: * `Interop/Cxx/enum/anonymous-with-swift-name-module-interface.swift` * `Interop/Cxx/enum/anonymous-with-swift-name-objc-module-interface.swift` * `Interop/Cxx/enum/anonymous-with-swift-name.swift` * `Interop/Cxx/enum/c-enums-NS_OPTIONS-NS_REFINED_FOR_SWIFT.swift` * `Interop/Cxx/enum/c-enums-NS_OPTIONS.swift` * `Interop/Cxx/enum/c-enums-withOptions-omit.swift` * `Interop/Cxx/class/inheritance/fields-module-interface.swift` * `Interop/Cxx/class/inheritance/fields.swift` * `Interop/Cxx/class/inheritance/functions-module-interface.swift` * `Interop/Cxx/class/inheritance/sub-types-module-interface.swift` * `Interop/Cxx/class/inheritance/type-aliases-module-interface.swift`
9a6435a
to
8d98f50
Compare
@swift-ci please smoke test |
@swift-ci please test |
@swift-ci please smoke test |
zoecarver
approved these changes
Nov 28, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM thanks
egorzhdan
added a commit
that referenced
this pull request
Dec 1, 2022
This applies the same trick as #62190 for newly written code. Fixes two C++ interop tests in rebranch: * `Interop/Cxx/enum/c-enums-NS_OPTIONS-api-notes-renamed-options.swift` * `Interop/Cxx/enum/c-enums-NS_OPTIONS-swift-named-options.swift` rdar://102858524
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Clang recently started wrapping more types in
clang::ElaboratedType
after this change: https://reviews.llvm.org/D112374This broke some assumptions in ClangImporter, specifically in enum handling logic. This change adjusts those.
Fixes these tests in rebranch:
Interop/Cxx/enum/anonymous-with-swift-name-module-interface.swift
Interop/Cxx/enum/anonymous-with-swift-name-objc-module-interface.swift
Interop/Cxx/enum/anonymous-with-swift-name.swift
Interop/Cxx/enum/c-enums-NS_OPTIONS-NS_REFINED_FOR_SWIFT.swift
Interop/Cxx/enum/c-enums-NS_OPTIONS.swift
Interop/Cxx/enum/c-enums-withOptions-omit.swift
Interop/Cxx/class/inheritance/fields-module-interface.swift
Interop/Cxx/class/inheritance/fields.swift
Interop/Cxx/class/inheritance/functions-module-interface.swift
Interop/Cxx/class/inheritance/sub-types-module-interface.swift
Interop/Cxx/class/inheritance/type-aliases-module-interface.swift