{
draw->pt.test_fse = debug_get_bool_option("DRAW_FSE", FALSE);
draw->pt.no_fse = debug_get_bool_option("DRAW_NO_FSE", FALSE);
+ draw->use_llvm = debug_get_bool_option("DRAW_USE_LLVM", TRUE);
draw->pt.front.vcache = draw_pt_vcache( draw );
if (!draw->pt.front.vcache)
return FALSE;
#if HAVE_LLVM
- draw->pt.middle.general = draw_pt_fetch_pipeline_or_emit_llvm( draw );
+ if (draw->use_llvm)
+ draw->pt.middle.general = draw_pt_fetch_pipeline_or_emit_llvm( draw );
#else
draw->pt.middle.general = NULL;
#endif