Skip to content

Commit 179afd9

Browse files
committed
Update comments for expressions split due to slow type checking.
Add the SR number to the comment. I've also updated the SR to point back to the PR for the work-around so that we know to revert the change when the issue is resolved.
1 parent e0ad2d5 commit 179afd9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Foundation/NSCFString.swift

+4-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ internal class _NSCFString : NSMutableString {
5959

6060
internal final class _NSCFConstantString : _NSCFString {
6161
internal var _ptr : UnsafePointer<UInt8> {
62-
// FIXME: Split expression as a work-around for slow type checking.
62+
// FIXME: Split expression as a work-around for slow type
63+
// checking (tracked by SR-5322).
6364
let offTemp1 = MemoryLayout<OpaquePointer>.size + MemoryLayout<Int32>.size
6465
let offTemp2 = MemoryLayout<Int32>.size + MemoryLayout<_CFInfo>.size
6566
let offset = offTemp1 + offTemp2
@@ -68,7 +69,8 @@ internal final class _NSCFConstantString : _NSCFString {
6869
}
6970

7071
private var _lenOffset : Int {
71-
// FIXME: Split expression as a work-around for slow type checking.
72+
// FIXME: Split expression as a work-around for slow type
73+
// checking (tracked by SR-5322).
7274
let offTemp1 = MemoryLayout<OpaquePointer>.size + MemoryLayout<Int32>.size
7375
let offTemp2 = MemoryLayout<Int32>.size + MemoryLayout<_CFInfo>.size
7476
return offTemp1 + offTemp2 + MemoryLayout<UnsafePointer<UInt8>>.size

0 commit comments

Comments
 (0)