diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-11-26 20:48:17 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 04:48:17 +0000 |
commit | 9ffc6acdbb3326dde74c803332547b0ae33e483a (patch) | |
tree | e3d45392c1f6d41fac66f59c2f216f81b9a86c6e /ops/optimizer_tests/uint8array.rs | |
parent | 0012484f4f194664bea87879ab9f4f20f4ee86c6 (diff) |
perf(ops): Reenable fast unit result optimization (#16827)
The optimization was missed in the optimizer rewrite
https://github.com/denoland/deno/pull/16514
Diffstat (limited to 'ops/optimizer_tests/uint8array.rs')
-rw-r--r-- | ops/optimizer_tests/uint8array.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ops/optimizer_tests/uint8array.rs b/ops/optimizer_tests/uint8array.rs new file mode 100644 index 000000000..f4507b21f --- /dev/null +++ b/ops/optimizer_tests/uint8array.rs @@ -0,0 +1,3 @@ +pub fn op_import_spki_x25519(key_data: &[u8], out: &mut [u8]) -> bool { + // ... +} |