Skip to content

Commit f610c0c

Browse files
authored
---
yaml --- r: 262011 b: refs/heads/tensorflow c: 8e00b71 h: refs/heads/master i: 262009: e14ef89 262007: adfc67a
1 parent a3e921c commit f610c0c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-04-25-a: 22f738a831d43aff2b9c9773bcb65
818818
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-05-08-a: 7d98cc16689baba5c8a3b90a9329bdcc1a12b4e9
819819
refs/heads/cherr42: a566ad54b073c2c56ac0a705d0a5bed9743135a5
820820
"refs/heads/codable_test_comment_fix": fc8f6824f7f347e1e8db55bff62db385c5728b5a
821-
refs/heads/tensorflow: 472480c118fbceedbdc9885645bb305bbb2545cb
821+
refs/heads/tensorflow: 8e00b7125fef5661af373726a9725effe4b8575c
822822
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-11-a: 8126fd7a652e2f70ad6d76505239e34fb2ef3e1a
823823
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-12-a: b3fd3dd84df6717f2e2e9df58c6d7e99fed57086
824824
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-13-a: 71135119579039dc321c5f65d870050fe36efda2

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,8 @@ public struct UnsafeMutablePointer<Pointee>: _Pointer {
580580
/// block. The memory must not be initialized or `Pointee` must be a trivial type.
581581
@inlinable
582582
public func deallocate() {
583-
Builtin.deallocRaw(_rawValue, (-1)._builtinWordValue, (-1)._builtinWordValue)
583+
Builtin.deallocRaw(_rawValue, (-1)._builtinWordValue,
584+
Builtin.alignof(Pointee.self))
584585
}
585586

586587
/// Accesses the instance referenced by this pointer.

0 commit comments

Comments
 (0)