Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AssemblyScript/assemblyscript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.27.9
Choose a base ref
...
head repository: AssemblyScript/assemblyscript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.27.10
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Sep 27, 2023

  1. Copy the full SHA
    1126ef1 View commit details
Showing with 1,976 additions and 1,569 deletions.
  1. +2 −2 std/assembly/staticarray.ts
  2. +1,062 −852 tests/compiler/std/staticarray.debug.wat
  3. +907 −715 tests/compiler/std/staticarray.release.wat
  4. +5 −0 tests/compiler/std/staticarray.ts
4 changes: 2 additions & 2 deletions std/assembly/staticarray.ts
Original file line number Diff line number Diff line change
@@ -214,14 +214,14 @@ export class StaticArray<T> {
for (let offset: usize = 0; offset < sourceSize; offset += sizeof<T>()) {
let ref = load<usize>(thisStart + offset);
store<usize>(outStart + offset, ref);
__link(outStart, ref, true);
__link(changetype<usize>(out), ref, true);
}
outStart += sourceSize;
let otherSize = <usize>otherLen << alignof<T>();
for (let offset: usize = 0; offset < otherSize; offset += sizeof<T>()) {
let ref = load<usize>(otherStart + offset);
store<usize>(outStart + offset, ref);
__link(outStart, ref, true);
__link(changetype<usize>(out), ref, true);
}
} else {
memory.copy(outStart, thisStart, sourceSize);
Loading