You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
swift-ci opened this issue
Jun 17, 2016
· 3 comments
Assignees
Labels
bugA deviation from expected or documented behavior. Also: expected but undesirable behavior.compilerThe Swift compiler itselfSILGenArea → compiler: The SIL generation stage
I don't believe this bug is a duplicate of SR-1076. They certainly appear similar (in fact, I copied the structure of SR-1076 when composing my bug report), but this bug (SR-1795) is specific to the way Swift handles a function definition with exactly one parameter. The parameter list to a function is treated as a tuple. SilGEN's canonicalization process leaves lists of 0, 2, or more parameters as tuples, but the TupleType representing a single-parameter list is transformed, first, to a ParenType (see first statement in
in (swift/lib/AST/)ASTContext.cpp), and then later to the ParenType's underlying type (by "desugaring"). So if the single parameter is itself a tuple, the result is a canonical type duplicating that of a function whose arguments are just the members of the tuple. The parser thinks these functions are different, but SilGEN thinks they have the same type.
I don't know quite what's going on in SR-1076, but it's not this.
bugA deviation from expected or documented behavior. Also: expected but undesirable behavior.compilerThe Swift compiler itselfSILGenArea → compiler: The SIL generation stage
Environment
This is from
swift-DEVELOPMENT-SNAPSHOT-2016-06-06-a-232-gf8a23da
. It is a Debug build with assertions enabled (obviously).Additional Detail from JIRA
md5: a680aa13b0392d6f7616f89a53d4c776
is blocked by:
duplicates:
is duplicated by:
Issue Description:
An overloaded function where one instance takes a tuple and the other takes the members of the tuple will crash in SILGen.
Here's the stack trace from the swiftc invocation:
Both function names are mangling to
TF3t1v1fFTSiSi_T
It appears that treating a function's input as, and mangling its name as, simply a tuple is problematic.
The text was updated successfully, but these errors were encountered: