-
Notifications
You must be signed in to change notification settings - Fork 344
[lldb] Pass requiresRevisionMatch argument to validateSerializedAST #5545
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
[lldb] Pass requiresRevisionMatch argument to validateSerializedAST #5545
Conversation
A
|
@swift-ci test |
@@ -1078,7 +1078,8 @@ static bool DeserializeAllCompilerFlags(swift::CompilerInvocation &invocation, | |||
swift::serialization::ExtendedValidationInfo extended_validation_info; | |||
info = swift::serialization::validateSerializedAST( | |||
buf, invocation.getSILOptions().EnableOSSAModules, | |||
/*requiredSDK*/StringRef(), &extended_validation_info); | |||
/*requiredSDK*/ StringRef(), /*requiresRevisionMatch*/ false, |
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.
@adrian-prantl I assume false
is what we want here
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.
Very good! Thanks
@@ -1078,7 +1078,8 @@ static bool DeserializeAllCompilerFlags(swift::CompilerInvocation &invocation, | |||
swift::serialization::ExtendedValidationInfo extended_validation_info; | |||
info = swift::serialization::validateSerializedAST( | |||
buf, invocation.getSILOptions().EnableOSSAModules, | |||
/*requiredSDK*/StringRef(), &extended_validation_info); | |||
/*requiredSDK*/ StringRef(), /*requiresRevisionMatch*/ false, |
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.
Very good! Thanks
…5545) Pass `requiresRevisionMatch` argument to `validateSerializedAST` after it was introduced in Swift: swiftlang/swift#61628 (cherry picked from commit 1bfddbc)
…wiftlang#5545) Pass `requiresRevisionMatch` argument to `validateSerializedAST` after it was introduced in Swift: swiftlang/swift#61628 (cherry picked from commit 1bfddbc)
Pass
requiresRevisionMatch
argument tovalidateSerializedAST
after it was introduced in Swift: swiftlang/swift#61628