[WebAssembly] Replace Bugzilla links with Github issues
Reviewed By: dschuff, asb Differential Revision: https://reviews.llvm.org/D145966
This commit is contained in:
parent
681d5eecf7
commit
4e844a1498
|
@ -3,7 +3,7 @@
|
|||
; We had a bug where the mutable-globals feature was not being added
|
||||
; so the linker-generated import of `__stack_pointer` (which is currently
|
||||
; mandatory for ; shared libraries) was generating a linker error.
|
||||
; See https://bugs.llvm.org/show_bug.cgi?id=52339
|
||||
; See https://github.com/llvm/llvm-project/issues/51681.
|
||||
|
||||
; RUN: llvm-as %s -o %t.o
|
||||
; RUN: wasm-ld --lto-O2 --experimental-pic -shared --no-gc-sections --export=tls_int %t.o -o %t.so
|
||||
|
|
|
@ -441,7 +441,7 @@ void ObjFile::parse(bool ignoreComdats) {
|
|||
// called directly (i.e. only address taken) don't have to match the defined
|
||||
// function's signature. We cannot do this for directly called functions
|
||||
// because those signatures are checked at validation times.
|
||||
// See https://bugs.llvm.org/show_bug.cgi?id=40412
|
||||
// See https://github.com/llvm/llvm-project/issues/39758
|
||||
std::vector<bool> isCalledDirectly(wasmObj->getNumberOfSymbols(), false);
|
||||
for (const SectionRef &sec : wasmObj->sections()) {
|
||||
const WasmSection §ion = wasmObj->getWasmSection(sec);
|
||||
|
@ -791,7 +791,8 @@ void BitcodeFile::parse() {
|
|||
}
|
||||
checkArch(t.getArch());
|
||||
std::vector<bool> keptComdats;
|
||||
// TODO Support nodeduplicate https://bugs.llvm.org/show_bug.cgi?id=50531
|
||||
// TODO Support nodeduplicate
|
||||
// https://github.com/llvm/llvm-project/issues/49875
|
||||
for (std::pair<StringRef, Comdat::SelectionKind> s : obj->getComdatTable())
|
||||
keptComdats.push_back(symtab->addComdat(s.first));
|
||||
|
||||
|
|
|
@ -567,7 +567,7 @@ void Writer::populateTargetFeatures() {
|
|||
if (config->isPic) {
|
||||
// This should not be necessary because all PIC objects should
|
||||
// contain the mutable-globals feature.
|
||||
// TODO(https://bugs.llvm.org/show_bug.cgi?id=52339)
|
||||
// TODO (https://github.com/llvm/llvm-project/issues/51681)
|
||||
allowed.insert("mutable-globals");
|
||||
}
|
||||
|
||||
|
|
|
@ -1217,7 +1217,7 @@ bool WebAssemblyLowerEmscriptenEHSjLj::runEHOnFunction(Function &F) {
|
|||
for (unsigned I = 0, E = LPI->getNumClauses(); I < E; ++I) {
|
||||
Constant *Clause = LPI->getClause(I);
|
||||
// TODO Handle filters (= exception specifications).
|
||||
// https://bugs.llvm.org/show_bug.cgi?id=50396
|
||||
// https://github.com/llvm/llvm-project/issues/49740
|
||||
if (LPI->isCatch(I))
|
||||
FMCArgs.push_back(Clause);
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
/// \file
|
||||
/// Nullify DBG_VALUE_LISTs instructions as a temporary measure before we
|
||||
/// implement DBG_VALUE_LIST handling in WebAssemblyDebugValueManager.
|
||||
/// See https://bugs.llvm.org/show_bug.cgi?id=50361.
|
||||
/// See https://github.com/llvm/llvm-project/issues/49705.
|
||||
/// TODO Correctly handle DBG_VALUE_LISTs
|
||||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
|
|
@ -69,7 +69,7 @@ catch: ; preds = %catch.dispatch
|
|||
; Test invoke instruction with filters (functions with throw(...) declaration)
|
||||
; Currently we don't support exception specifications correctly in JS glue code,
|
||||
; so we ignore all filters here.
|
||||
; See https://bugs.llvm.org/show_bug.cgi?id=50396.
|
||||
; See https://github.com/llvm/llvm-project/issues/49740.
|
||||
define void @filter() personality ptr @__gxx_personality_v0 {
|
||||
; CHECK-LABEL: @filter(
|
||||
entry:
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# check that we can refer to section symbols of other sections.
|
||||
# getWasmSection currently forces the section symbol to have a suffix.
|
||||
|
||||
# TODO: fix the 0-suffix: https://bugs.llvm.org/show_bug.cgi?id=49252
|
||||
# TODO: fix the 0-suffix: https://github.com/llvm/llvm-project/issues/48596
|
||||
|
||||
.section .debug_abbrev,"",@
|
||||
.int8 1
|
||||
|
|
Loading…
Reference in New Issue
Block a user