Skip to content

Commit 2b3207a

Browse files
committed
---
yaml --- r: 346853 b: refs/heads/master c: 5e0427a h: refs/heads/master i: 346851: efc4d98
1 parent ec18efd commit 2b3207a

File tree

6 files changed

+9
-22
lines changed

6 files changed

+9
-22
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: b8ad33f6f72519c8d72cf0634c253f3f4765c42f
2+
refs/heads/master: 5e0427a9b526713753b798a22cad42ec0467eb8f
33
refs/heads/master-next: 203b3026584ecad859eb328b2e12490099409cd5
44
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
55
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea

trunk/lib/Sema/CSStep.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -556,8 +556,8 @@ bool DisjunctionStep::shortCircuitDisjunctionAt(
556556
if (currentChoice->getKind() == ConstraintKind::CheckedCast)
557557
return true;
558558

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.
561561
if (currentChoice->getKind() == ConstraintKind::BindOverload &&
562562
isSIMDOperator(currentChoice->getOverloadChoice().getDecl()) &&
563563
lastSuccessfulChoice->getKind() == ConstraintKind::BindOverload &&

trunk/stdlib/public/CMakeLists.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,6 @@ if(SWIFT_BUILD_STDLIB)
5656
add_subdirectory(stubs)
5757
add_subdirectory(core)
5858
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)
6459
endif()
6560

6661
if(SWIFT_BUILD_STDLIB OR SWIFT_BUILD_REMOTE_MIRROR)

trunk/stdlib/public/SIMDOperators/CMakeLists.txt

Lines changed: 0 additions & 7 deletions
This file was deleted.

trunk/stdlib/public/SIMDOperators/Operators.swift

Lines changed: 0 additions & 1 deletion
This file was deleted.

trunk/stdlib/public/core/Builtin.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -753,8 +753,8 @@ func _trueAfterDiagnostics() -> Builtin.Int1 {
753753
/// declared for the parameter) and a dynamic type of `Int`.
754754
///
755755
/// 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)'")
758758
/// }
759759
///
760760
/// let count: Int = 5
@@ -816,8 +816,8 @@ func _trueAfterDiagnostics() -> Builtin.Int1 {
816816
/// of `String.self` (the dynamic type inside the parameter).
817817
///
818818
/// 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)'")
821821
/// }
822822
///
823823
/// protocol P {}
@@ -835,8 +835,8 @@ func _trueAfterDiagnostics() -> Builtin.Int1 {
835835
/// calling `type(of:)`.
836836
///
837837
/// 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)'")
840840
/// }
841841
///
842842
/// betterPrintGenericInfo(stringAsP)

0 commit comments

Comments
 (0)