Skip to content

Commit 4e844a1

Browse files
committed
[WebAssembly] Replace Bugzilla links with Github issues
Reviewed By: dschuff, asb Differential Revision: https://reviews.llvm.org/D145966
1 parent 681d5ee commit 4e844a1

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

lld/test/wasm/lto/pic-empty.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
; We had a bug where the mutable-globals feature was not being added
44
; so the linker-generated import of `__stack_pointer` (which is currently
55
; mandatory for ; shared libraries) was generating a linker error.
6-
; See https://bugs.llvm.org/show_bug.cgi?id=52339
6+
; See https://github.com/llvm/llvm-project/issues/51681.
77

88
; RUN: llvm-as %s -o %t.o
99
; RUN: wasm-ld --lto-O2 --experimental-pic -shared --no-gc-sections --export=tls_int %t.o -o %t.so

lld/wasm/InputFiles.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ void ObjFile::parse(bool ignoreComdats) {
441441
// called directly (i.e. only address taken) don't have to match the defined
442442
// function's signature. We cannot do this for directly called functions
443443
// because those signatures are checked at validation times.
444-
// See https://bugs.llvm.org/show_bug.cgi?id=40412
444+
// See https://github.com/llvm/llvm-project/issues/39758
445445
std::vector<bool> isCalledDirectly(wasmObj->getNumberOfSymbols(), false);
446446
for (const SectionRef &sec : wasmObj->sections()) {
447447
const WasmSection &section = wasmObj->getWasmSection(sec);
@@ -791,7 +791,8 @@ void BitcodeFile::parse() {
791791
}
792792
checkArch(t.getArch());
793793
std::vector<bool> keptComdats;
794-
// TODO Support nodeduplicate https://bugs.llvm.org/show_bug.cgi?id=50531
794+
// TODO Support nodeduplicate
795+
// https://github.com/llvm/llvm-project/issues/49875
795796
for (std::pair<StringRef, Comdat::SelectionKind> s : obj->getComdatTable())
796797
keptComdats.push_back(symtab->addComdat(s.first));
797798

lld/wasm/Writer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ void Writer::populateTargetFeatures() {
567567
if (config->isPic) {
568568
// This should not be necessary because all PIC objects should
569569
// contain the mutable-globals feature.
570-
// TODO(https://bugs.llvm.org/show_bug.cgi?id=52339)
570+
// TODO (https://github.com/llvm/llvm-project/issues/51681)
571571
allowed.insert("mutable-globals");
572572
}
573573

llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1217,7 +1217,7 @@ bool WebAssemblyLowerEmscriptenEHSjLj::runEHOnFunction(Function &F) {
12171217
for (unsigned I = 0, E = LPI->getNumClauses(); I < E; ++I) {
12181218
Constant *Clause = LPI->getClause(I);
12191219
// TODO Handle filters (= exception specifications).
1220-
// https://bugs.llvm.org/show_bug.cgi?id=50396
1220+
// https://github.com/llvm/llvm-project/issues/49740
12211221
if (LPI->isCatch(I))
12221222
FMCArgs.push_back(Clause);
12231223
}

llvm/lib/Target/WebAssembly/WebAssemblyNullifyDebugValueLists.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/// \file
1010
/// Nullify DBG_VALUE_LISTs instructions as a temporary measure before we
1111
/// implement DBG_VALUE_LIST handling in WebAssemblyDebugValueManager.
12-
/// See https://bugs.llvm.org/show_bug.cgi?id=50361.
12+
/// See https://github.com/llvm/llvm-project/issues/49705.
1313
/// TODO Correctly handle DBG_VALUE_LISTs
1414
///
1515
//===----------------------------------------------------------------------===//

llvm/test/CodeGen/WebAssembly/lower-em-exceptions.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ catch: ; preds = %catch.dispatch
6969
; Test invoke instruction with filters (functions with throw(...) declaration)
7070
; Currently we don't support exception specifications correctly in JS glue code,
7171
; so we ignore all filters here.
72-
; See https://bugs.llvm.org/show_bug.cgi?id=50396.
72+
; See https://github.com/llvm/llvm-project/issues/49740.
7373
define void @filter() personality ptr @__gxx_personality_v0 {
7474
; CHECK-LABEL: @filter(
7575
entry:

llvm/test/MC/WebAssembly/section-symbol.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# check that we can refer to section symbols of other sections.
44
# getWasmSection currently forces the section symbol to have a suffix.
55

6-
# TODO: fix the 0-suffix: https://bugs.llvm.org/show_bug.cgi?id=49252
6+
# TODO: fix the 0-suffix: https://github.com/llvm/llvm-project/issues/48596
77

88
.section .debug_abbrev,"",@
99
.int8 1

0 commit comments

Comments
 (0)