about summary refs log tree commit diff
path: root/src/test/ui/wasm-custom-section-relocations.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-15/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2018-08-31cleanup: Add main functions to some UI testsVadim Petrochenkov-0/+2
2018-07-16rustc: Use link_section, not wasm_custom_sectionAlex Crichton-0/+23
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