Add missing compilation

This commit is contained in:
Guillaume Gomez 2023-09-06 17:38:50 +02:00 committed by GitHub
parent d214df291c
commit 7324ee2da8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,6 +34,7 @@ also add the calls we need to generate the GIMPLE:
int main() {
gcc_jit_context *ctxt = gcc_jit_context_acquire();
create_code(ctxt, NULL);
gcc_jit_context_compile(ctxt);
gcc_jit_context_dump_to_file(ctxt, "tmp.gimple", 1);
return 0;
}