File tree Expand file tree Collapse file tree 6 files changed +9
-22
lines changed Expand file tree Collapse file tree 6 files changed +9
-22
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: b8ad33f6f72519c8d72cf0634c253f3f4765c42f
2
+ refs/heads/master: 5e0427a9b526713753b798a22cad42ec0467eb8f
3
3
refs/heads/master-next: 203b3026584ecad859eb328b2e12490099409cd5
4
4
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
5
5
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea
Original file line number Diff line number Diff line change @@ -556,8 +556,8 @@ bool DisjunctionStep::shortCircuitDisjunctionAt(
556
556
if (currentChoice->getKind () == ConstraintKind::CheckedCast)
557
557
return true ;
558
558
559
- // If we have an operator from the SIMDOperators module, and the prior
560
- // choice was not from the SIMDOperators module , we're done.
559
+ // If we have a SIMD operator, and the prior choice was not a SIMD
560
+ // Operator , we're done.
561
561
if (currentChoice->getKind () == ConstraintKind::BindOverload &&
562
562
isSIMDOperator (currentChoice->getOverloadChoice ().getDecl ()) &&
563
563
lastSuccessfulChoice->getKind () == ConstraintKind::BindOverload &&
Original file line number Diff line number Diff line change @@ -56,11 +56,6 @@ if(SWIFT_BUILD_STDLIB)
56
56
add_subdirectory (stubs )
57
57
add_subdirectory (core )
58
58
add_subdirectory (SwiftOnoneSupport )
59
-
60
- # NOTE(compnerd) this must come after the SwiftOnoneSupport as the current
61
- # cross-compilation support has to hand roll the import library setup which
62
- # requires that the target is setup prior to use.
63
- add_subdirectory (SIMDOperators )
64
59
endif ()
65
60
66
61
if (SWIFT_BUILD_STDLIB OR SWIFT_BUILD_REMOTE_MIRROR )
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -753,8 +753,8 @@ func _trueAfterDiagnostics() -> Builtin.Int1 {
753
753
/// declared for the parameter) and a dynamic type of `Int`.
754
754
///
755
755
/// func printInfo(_ value: Any) {
756
- /// let type = type(of: value)
757
- /// print("'\(value)' of type '\(type )'")
756
+ /// let t = type(of: value)
757
+ /// print("'\(value)' of type '\(t )'")
758
758
/// }
759
759
///
760
760
/// let count: Int = 5
@@ -816,8 +816,8 @@ func _trueAfterDiagnostics() -> Builtin.Int1 {
816
816
/// of `String.self` (the dynamic type inside the parameter).
817
817
///
818
818
/// func printGenericInfo<T>(_ value: T) {
819
- /// let type = type(of: value)
820
- /// print("'\(value)' of type '\(type )'")
819
+ /// let t = type(of: value)
820
+ /// print("'\(value)' of type '\(t )'")
821
821
/// }
822
822
///
823
823
/// protocol P {}
@@ -835,8 +835,8 @@ func _trueAfterDiagnostics() -> Builtin.Int1 {
835
835
/// calling `type(of:)`.
836
836
///
837
837
/// func betterPrintGenericInfo<T>(_ value: T) {
838
- /// let type = type(of: value as Any)
839
- /// print("'\(value)' of type '\(type )'")
838
+ /// let t = type(of: value as Any)
839
+ /// print("'\(value)' of type '\(t )'")
840
840
/// }
841
841
///
842
842
/// betterPrintGenericInfo(stringAsP)
You can’t perform that action at this time.
0 commit comments