Implemented a basic API for SSA
All checks were successful
/ test (push) Successful in 16s

This commit is contained in:
Eduard Urbach 2025-06-20 23:42:58 +02:00
parent 89f375f4fc
commit 14bccadd0f
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
7 changed files with 54 additions and 16 deletions

View file

@ -1,5 +1,6 @@
package ssa
// Type represents the instruction type.
type Type byte
const (
@ -24,6 +25,10 @@ const (
Shl
Shr
// Branch
If
Jump
// Special
Call
Phi