dev icon indicating copy to clipboard operation
dev copied to clipboard

[DRAFT] Infer variable type using type information from SBL

Open x87 opened this issue 11 months ago • 0 comments

$var = 1.0 // $var is now Float
$var2 = 2.0 // $var2 is now Float

$var += $var2 // does not require explicit opcode or type declaration

Note: only use this within one basic block, i.e. a series of commands between branch instructions.

x87 avatar Sep 10 '23 19:09 x87