mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The new macro aliasing uncovered a latent issue where we would attempt to perform an optional-to-optional conversion on a type that is non-optional though may be aliased to an optional. `CVaList` is sometimes an optional pointer and would be interpreted as an optional type which would fail the assertion in the optional-to-optional conversion.
8 lines
105 B
Plaintext
8 lines
105 B
Plaintext
module PointerAuth {
|
|
header "ptrauth_field_fptr_import.h"
|
|
}
|
|
|
|
module Variadic {
|
|
header "variadic.h"
|
|
}
|