about summary refs log tree commit diff
path: root/src/test/ui/wasm-custom-section-relocations.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-14/+0
2022-07-01Shorten def_span for more items.Camille GILLOT-2/+2
2019-03-11Update tests that don't run on my platformVadim Petrochenkov-2/+2
2018-12-25Remove licensesMark Rousskov-2/+2
2018-08-31cleanup: Add main functions to some UI testsVadim Petrochenkov-6/+1
2018-07-16rustc: Use link_section, not wasm_custom_sectionAlex Crichton-0/+19
This commit transitions definitions of custom sections on the wasm target from the unstable `#[wasm_custom_section]` attribute to the already-stable-for-other-targets `#[link_section]` attribute. Mostly the same restrictions apply as before, except that this now applies only to statics. Closes #51088