Stream: git-wasmtime

Topic: wasmtime / Issue #1499 Use F64X2 as type when saving and ...


view this post on Zulip Wasmtime GitHub notifications bot (Apr 11 2020 at 17:59):

github-actions[bot] commented on Issue #1499:

Subscribe to Label Action

cc @bnjbvr

<details>
This issue or pull request has been labeled: "cranelift"

Thus the following users have been cc'd because of the following labels:

To subscribe or unsubscribe from this label, edit the <code>.github/subscribe-to-label.json</code> configuration file.

Learn more.
</details>

view this post on Zulip Wasmtime GitHub notifications bot (Apr 11 2020 at 19:03):

bjorn3 commented on Issue #1499:

Rustfmt failed:

Diff in /home/runner/work/wasmtime/wasmtime/cranelift/codegen/src/isa/x86/abi.rs at line 1031:
         let mut fpr_offset = 0;

         for reg in csrs.iter(FPR) {

-            let value = pos
-                .ins()
-                .load(types::F64X2, ir::MemFlags::trusted(), stack_addr, fpr_offset);
+            let value = pos.ins().load(
+                types::F64X2,
+                ir::MemFlags::trusted(),
+                stack_addr,
+                fpr_offset,
+            );
             fpr_offset += types::F64X2.bytes() as i32;

             if let Some(ref mut cfa_state) = cfa_state.as_mut() {

Last updated: Nov 22 2024 at 16:03 UTC