forgot to add jit.h

This commit is contained in:
kr.angelov
2013-06-26 09:08:47 +00:00
parent a2af8e216f
commit cf0bc127af

16
src/runtime/c/pgf/jit.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef PGF_JIT_H_
#define PGF_JIT_H_
typedef struct PgfJitState PgfJitState;
PgfJitState*
pgf_jit_init(GuPool* tmp_pool, GuPool* pool);
void
pgf_jit_done(PgfJitState* state, PgfAbstr* abstr);
void
pgf_jit_predicate(PgfJitState* state,
PgfCIdMap* abscats, PgfAbsCat* abscat);
#endif