X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=code.c;h=747e5892ebc04e0d0d7138951f43ad1e8fac56dd;hp=35f758a22526f966cc00c7a28c45c74c0ee0d43a;hb=685925398c725e5722690b622e7938fd04c805ce;hpb=2923b718e16d7c82b9cd3244d77bb8c701fd5b53 diff --git a/code.c b/code.c index 35f758a..747e589 100644 --- a/code.c +++ b/code.c @@ -21,6 +21,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ +#include #include "gmqcc.h" /* @@ -28,7 +29,7 @@ * or qcint; however, it's incredibly unsafe for two reasons. * 1) The compilers aliasing optimization can legally make it unstable * (it's undefined behaviour). - * + * * 2) The cast itself depends on fresh storage (newly allocated in which * ever function is using the cast macros), the contents of which are * transferred in a way that the obligation to release storage is not @@ -171,7 +172,7 @@ static void code_create_header(code_t *code, prog_header *code_header) { /* * These are not part of the header but we ensure LE format here to save on duplicated * code. - */ + */ util_endianswap(code->statements, vec_size(code->statements), sizeof(prog_section_statement)); util_endianswap(code->defs, vec_size(code->defs), sizeof(prog_section_def)); util_endianswap(code->fields, vec_size(code->fields), sizeof(prog_section_field)); @@ -183,7 +184,7 @@ static void code_create_header(code_t *code, prog_header *code_header) { * Same principle except this one allocates memory and writes the lno(optional) and the dat file * directly out to allocated memory. Which is actually very useful for the future library support * we're going to add. - */ + */ bool code_write_memory(code_t *code, uint8_t **datmem, size_t *sizedat, uint8_t **lnomem, size_t *sizelno) { prog_header code_header; uint32_t offset = 0;