| 266 | } |
| 267 | |
| 268 | unsigned int nullcGetBytecode(char **bytecode) |
| 269 | { |
| 270 | using namespace NULLC; |
| 271 | NULLC_CHECK_INITIALIZED(0); |
| 272 | |
| 273 | unsigned int size = compiler->GetBytecode(bytecode); |
| 274 | // Load it into cache |
| 275 | BinaryCache::LastBytecode(*bytecode); |
| 276 | return size; |
| 277 | } |
| 278 | |
| 279 | unsigned int nullcGetBytecodeNoCache(char **bytecode) |
| 280 | { |