Skip to content

Commit 4cb63c8

Browse files
committed
[NFC] Migrate remnant Jira issue references to GitHub issues
1 parent cef0158 commit 4cb63c8

24 files changed

+45
-41
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1171,7 +1171,7 @@ endif()
11711171
# declares the swift-stdlib-* set of targets. These targets will then
11721172
# implicitly depend on any targets declared with IS_STDLIB.
11731173
#
1174-
# https://bugs.swift.org/browse/SR-5975
1174+
# https://github.com/apple/swift/issues/48534
11751175
if(SWIFT_BUILD_STDLIB)
11761176
add_subdirectory(stdlib)
11771177
else()
@@ -1211,7 +1211,7 @@ if(SWIFT_INCLUDE_TOOLS)
12111211

12121212
# Always include this after including stdlib/!
12131213
# Refer to the large comment above the add_subdirectory(stdlib) call.
1214-
# https://bugs.swift.org/browse/SR-5975
1214+
# https://github.com/apple/swift/issues/48534
12151215
add_subdirectory(tools)
12161216

12171217
# Localization targets are configured in a way that assume the swift

benchmark/single-source/BufferFill.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public func bufferFillFromSliceTeardown() {
5555
public func bufferFillFromSliceExecute(n: Int) {
5656
// Measure performance when filling an UnsafeBuffer from a Slice
5757
// of a Collection that supports `withContiguousStorageIfAvailable`
58-
// See: https://bugs.swift.org/browse/SR-14491
58+
// See: https://github.com/apple/swift/issues/56846
5959

6060
for _ in 0..<n {
6161
let slice = Slice(base: a, bounds: a.indices)
@@ -87,7 +87,7 @@ public func rawBufferCopyBytesTeardown() {
8787
public func rawBufferCopyBytesExecute(n: Int) {
8888
// Measure performance when copying bytes into an UnsafeRawBuffer
8989
// from a Collection that supports `withContiguousStorageIfAvailable`
90-
// See: https://bugs.swift.org/browse/SR-14886
90+
// See: https://github.com/apple/swift/issues/57233
9191

9292
for _ in 0..<n {
9393
rb.copyBytes(from: ra)
@@ -112,7 +112,7 @@ public func rawBufferInitializeMemoryTeardown() {
112112
public func rawBufferInitializeMemoryExecute(n: Int) {
113113
// Measure performance when initializing an UnsafeRawBuffer
114114
// from a Collection that supports `withContiguousStorageIfAvailable`
115-
// See: https://bugs.swift.org/browse/SR-14982
115+
// See: https://github.com/apple/swift/issues/57324
116116

117117
for _ in 0..<n {
118118
var (iterator, initialized) = rb.initializeMemory(as: Int.self, from: a)
@@ -154,7 +154,7 @@ public func rawBufferCopyContentsTeardown() {
154154
public func rawBufferCopyContentsExecute(n: Int) {
155155
// Measure performance of copying bytes from an
156156
// `UnsafeRawBufferPointer` to an `UnsafeMutableBufferPointer<UInt8>`.
157-
// See: https://bugs.swift.org/browse/SR-9604
157+
// See: https://github.com/apple/swift/issues/52050
158158

159159
for _ in 0..<n {
160160
var (iterator, initialized) = b8.initialize(from: r8)

benchmark/single-source/DictionaryCopy.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// This benchmark checks for quadratic behavior while copying elements in hash
1414
// order between Dictionaries of decreasing capacity
1515
//
16-
// https://bugs.swift.org/browse/SR-3268
16+
// https://github.com/apple/swift/issues/45856
1717

1818
import TestsUtils
1919

cmake/modules/Libdispatch.cmake

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ endif()
4747
# Build any target libdispatch if needed.
4848
foreach(sdk ${SWIFT_SDKS})
4949
# Darwin targets have libdispatch available, do not build it.
50-
# Wasm/WASI doesn't support libdispatch yet. See https://bugs.swift.org/browse/SR-12097 for more details.
50+
# Wasm/WASI doesn't support libdispatch yet.
51+
# See https://github.com/apple/swift/issues/54533 for more details.
5152
if(NOT "${sdk}" IN_LIST SWIFT_DARWIN_PLATFORMS AND NOT "${sdk}" STREQUAL WASI)
5253
list(APPEND DISPATCH_SDKS "${sdk}")
5354
endif()

include/swift/ABI/Metadata.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ using TypeContextDescriptor = TargetTypeContextDescriptor<InProcess>;
173173
template<template <typename Runtime> class ObjCInteropKind, unsigned PointerSize>
174174
using ExternalTypeContextDescriptor = TargetTypeContextDescriptor<External<ObjCInteropKind<RuntimeTarget<PointerSize>>>>;
175175

176-
// FIXME: https://bugs.swift.org/browse/SR-1155
176+
// FIXME: https://github.com/apple/swift/issues/43763
177177
#pragma clang diagnostic push
178178
#pragma clang diagnostic ignored "-Winvalid-offsetof"
179179

include/swift/AST/AutoDiff.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ struct AutoDiffConfig {
218218
return AutoDiffConfig(parameterIndices, resultIndices, signature);
219219
}
220220

221-
// TODO(SR-13506): Use principled mangling for AD-generated symbols.
221+
// TODO(https://github.com/apple/swift/issues/52204): Use principled mangling for AD-generated symbols.
222222
std::string mangle() const {
223223
std::string result = "src_";
224224
interleave(

include/swift/AST/DiagnosticsFrontend.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ WARNING(warning_module_shadowing_may_break_module_interface,none,
399399
"public %0 %1 shadows module %2, which may cause failures when "
400400
"importing %3 or its clients in some configurations; please rename "
401401
"either the %0 %1 or the module %2, or see "
402-
"https://bugs.swift.org/browse/SR-14195 for workarounds",
402+
"https://github.com/apple/swift/issues/56573 for workarounds",
403403
(DescriptiveDeclKind, FullyQualified<Type>,
404404
/*shadowedModule=*/ModuleDecl *, /*interfaceModule*/ModuleDecl *))
405405
REMARK(rebuilding_module_from_interface,none,

include/swift/AST/DiagnosticsSema.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3529,7 +3529,7 @@ ERROR(derivative_attr_nonfinal_class_init_unsupported,none,
35293529
"making %0 final", (Type))
35303530
ERROR(derivative_attr_unsupported_accessor_kind,none,
35313531
"cannot register derivative for %0", (/*accessorKind*/ DescriptiveDeclKind))
3532-
// TODO(SR-13096): Remove this temporary diagnostic.
3532+
// TODO(https://github.com/apple/swift/issues/55542): Remove this temporary diagnostic.
35333533
ERROR(derivative_attr_class_setter_unsupported,none,
35343534
"cannot yet register derivative for class property or subscript setters",
35353535
())

include/swift/SILOptimizer/Differentiation/Common.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ raw_ostream &getADDebugStream();
5656
/// %index_1 = integer_literal $Builtin.Word, 1
5757
/// %elt1 = index_addr %elt0, %index_1 // element address
5858
/// ...
59-
// TODO(SR-12894): Find a better name and move this general utility to
60-
// ArraySemantic.h.
59+
// TODO(https://github.com/apple/swift/issues/55340): Find a better name and move this general utility to ArraySemantic.h.
6160
ApplyInst *getAllocateUninitializedArrayIntrinsicElementAddress(SILValue v);
6261

6362
/// Given a value, finds its single `destructure_tuple` user if the value is

test/AutoDiff/compiler_crashers_fixed/issue-54935-differentiable-function-extract-subst-function-type.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// SIL verification error regarding substituted function types and
55
// `differentiable_function_extract` instruction. Occurs only with `-O`.
66

7-
// FIXME: Disabled due to flakiness on Linux (https://github.com/apple/swift/issues/55466), likely related to TF-1197.
8-
// REQUIRES: SR13021
7+
// FIXME(https://github.com/apple/swift/issues/55466): Disabled due to flakiness on Linux , likely related to TF-1197.
8+
// XFAIL: *
99

1010
import _Differentiation
1111

0 commit comments

Comments
 (0)