File tree Expand file tree Collapse file tree 7 files changed +9
-8
lines changed Expand file tree Collapse file tree 7 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 3
3
; We had a bug where the mutable-globals feature was not being added
4
4
; so the linker-generated import of `__stack_pointer` (which is currently
5
5
; 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.
7
7
8
8
; RUN: llvm-as %s -o %t.o
9
9
; RUN: wasm-ld --lto-O2 --experimental-pic -shared --no-gc-sections --export=tls_int %t.o -o %t.so
Original file line number Diff line number Diff line change @@ -441,7 +441,7 @@ void ObjFile::parse(bool ignoreComdats) {
441
441
// called directly (i.e. only address taken) don't have to match the defined
442
442
// function's signature. We cannot do this for directly called functions
443
443
// 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
445
445
std::vector<bool > isCalledDirectly (wasmObj->getNumberOfSymbols (), false );
446
446
for (const SectionRef &sec : wasmObj->sections ()) {
447
447
const WasmSection §ion = wasmObj->getWasmSection (sec);
@@ -791,7 +791,8 @@ void BitcodeFile::parse() {
791
791
}
792
792
checkArch (t.getArch ());
793
793
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
795
796
for (std::pair<StringRef, Comdat::SelectionKind> s : obj->getComdatTable ())
796
797
keptComdats.push_back (symtab->addComdat (s.first ));
797
798
Original file line number Diff line number Diff line change @@ -567,7 +567,7 @@ void Writer::populateTargetFeatures() {
567
567
if (config->isPic ) {
568
568
// This should not be necessary because all PIC objects should
569
569
// 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 )
571
571
allowed.insert (" mutable-globals" );
572
572
}
573
573
Original file line number Diff line number Diff line change @@ -1217,7 +1217,7 @@ bool WebAssemblyLowerEmscriptenEHSjLj::runEHOnFunction(Function &F) {
1217
1217
for (unsigned I = 0 , E = LPI->getNumClauses (); I < E; ++I) {
1218
1218
Constant *Clause = LPI->getClause (I);
1219
1219
// TODO Handle filters (= exception specifications).
1220
- // https://bugs. llvm.org/show_bug.cgi?id=50396
1220
+ // https://github.com/ llvm/llvm-project/issues/49740
1221
1221
if (LPI->isCatch (I))
1222
1222
FMCArgs.push_back (Clause);
1223
1223
}
Original file line number Diff line number Diff line change 9
9
// / \file
10
10
// / Nullify DBG_VALUE_LISTs instructions as a temporary measure before we
11
11
// / 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 .
13
13
// / TODO Correctly handle DBG_VALUE_LISTs
14
14
// /
15
15
// ===----------------------------------------------------------------------===//
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ catch: ; preds = %catch.dispatch
69
69
; Test invoke instruction with filters (functions with throw(...) declaration)
70
70
; Currently we don't support exception specifications correctly in JS glue code,
71
71
; 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 .
73
73
define void @filter () personality ptr @__gxx_personality_v0 {
74
74
; CHECK-LABEL: @filter(
75
75
entry:
Original file line number Diff line number Diff line change 3
3
# check that we can refer to section symbols of other sections.
4
4
# getWasmSection currently forces the section symbol to have a suffix.
5
5
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
7
7
8
8
.section .debug_abbrev,"",@
9
9
.int8 1
You can’t perform that action at this time.
0 commit comments