aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Instructions/Instrs/Memory/I32Store8.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure/Instructions/Instrs/Memory/I32Store8.php')
-rw-r--r--src/Structure/Instructions/Instrs/Memory/I32Store8.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/Structure/Instructions/Instrs/Memory/I32Store8.php b/src/Structure/Instructions/Instrs/Memory/I32Store8.php
deleted file mode 100644
index a152151..0000000
--- a/src/Structure/Instructions/Instrs/Memory/I32Store8.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Memory;
-
-use Nsfisis\Waddiwasi\Structure\Instructions\Instr;
-
-final readonly class I32Store8 extends Instr
-{
- /**
- * @param U32 $offset
- * @param U32 $align
- */
- protected function __construct(
- public int $offset,
- public int $align,
- ) {
- }
-
- public static function opName(): string
- {
- return "i32.store8";
- }
-}