Usermode - Fixed GAS/NASM detection
[tpg/acess2.git] / Usermode / Libraries / libspiderscript.so_src / bytecode_optimise.c
1 /*
2  * SpiderScript Library
3  * by John Hodge (thePowersGang)
4  * 
5  * bytecode_gen.c
6  * - Generate bytecode
7  */
8 #include <stdlib.h>
9 #include "bytecode_ops.h"
10
11 // Patterns:
12 // TODO: Figure out what optimisations can be done
13
14 int Bytecode_OptimizeFunction(tBC_Function *Function)
15 {
16         for( op = Function->Operations; op; op = op->Next, idx ++ )
17         {
18         }
19 }

UCC git Repository :: git.ucc.asn.au