Skip to content

Commit c7768c2

Browse files
committed
---
yaml --- r: 327662 b: refs/heads/tensorflow c: 5285afd h: refs/heads/master
1 parent 6bb0b4c commit c7768c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-04-25-a: 22f738a831d43aff2b9c9773bcb65
816816
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-05-08-a: 7d98cc16689baba5c8a3b90a9329bdcc1a12b4e9
817817
refs/heads/cherr42: a566ad54b073c2c56ac0a705d0a5bed9743135a5
818818
"refs/heads/codable_test_comment_fix": fc8f6824f7f347e1e8db55bff62db385c5728b5a
819-
refs/heads/tensorflow: 87516934cd8d9fe7c1f38b54cca5a02a17eed45a
819+
refs/heads/tensorflow: 5285afdbe6697fb4d3a9c9b029a4e1be5a6b3941
820820
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-11-a: 8126fd7a652e2f70ad6d76505239e34fb2ef3e1a
821821
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-12-a: b3fd3dd84df6717f2e2e9df58c6d7e99fed57086
822822
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-13-a: 71135119579039dc321c5f65d870050fe36efda2

branches/tensorflow/stdlib/public/core/SIMDVector.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1410,12 +1410,12 @@ where T: SIMD, T.Scalar: FloatingPoint {
14101410

14111411
// Break the ambiguity between AdditiveArithmetic and SIMD for += and -=
14121412
extension SIMD where Self: AdditiveArithmetic, Self.Scalar: FloatingPoint {
1413-
@_transparent
1413+
@_alwaysEmitIntoClient
14141414
public static func +=(lhs: inout Self, rhs: Self) {
14151415
lhs = lhs + rhs
14161416
}
14171417

1418-
@_transparent
1418+
@_alwaysEmitIntoClient
14191419
public static func -=(lhs: inout Self, rhs: Self) {
14201420
lhs = lhs - rhs
14211421
}

0 commit comments

Comments
 (0)