This ``code'' is shit.
*Writing code that only works on unoptimized GCC on a POSIX OS on x86
*No optimizations whatsoever, making it slower than an interpreter with RLE
*Assuming no code between labels is reordered or optimized inc_sp: /* Increment stack pointer. */
bf_sp++;
dec_sp: /* Decrement stack pointer. */
bf_sp--;
inc_se: /* Increment stack element. */ inc_sp and inc_se do the same thing, so they can be the same label.