about summary refs log tree commit diff
path: root/src/test/run-make/wasm-stringify-ints-small
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-43/+0
2022-08-23Diagnose missing includes in run-make testsTomasz Miąsko-1/+1
2020-01-30Change opt-level from 2 back to 3Gregor Peach-1/+1
In Cargo.toml, the opt-level for `release` and `bench` was overridden to be 2. This was to work around a problem with LLVM 7. However, rust no longer uses LLVM 7, so this is no longer needed. This creates a small compile time regression in MIR constant eval, so I've added a #[inline(always)] on the `step` function used in const eval Also creates a binary size increase in wasm-stringify-ints-small, so I've bumped the limit there.
2019-02-08Don't shadow the provided `stringify!` macro in a wasm code size test caseNick Fitzgerald-23/+17
2019-02-08Use write_char for writing padding charactersNick Fitzgerald-1/+1
Removes some unsafe *and* saves almost half a kilobyte of code size.
2019-02-08Add a wasm code size test for stringifying numbersNick Fitzgerald-0/+49