comparison libinterp/interp-core/pt-jit.h @ 15479:3f447bcc8488

set Venable_jit_debugging and Venable_jit_compiler variables directly from command line options * octave.cc (octave_process_command_line): Call Fenable_jit_debugging and Fenable_jit_compiler directly. (octave_initialize_interpreter): Don't call bind_internal_variable to set Venable_jit_debugging and Venable_jit_compiler (no_jit_compiler_option, jit_debug_option): Delete unused static variables. * octave.cc, pt-jit.h, pt-jit.cc: Use jit_debugging consistently instead of mixing jit_debug and jit_debugging.
author John W. Eaton <jwe@octave.org>
date Wed, 03 Oct 2012 03:07:22 -0400
parents 8355fddce815
children 52df2e7baabe
comparison
equal deleted inserted replaced
15478:b1ff8c83e232 15479:3f447bcc8488
439 }; 439 };
440 440
441 #endif 441 #endif
442 442
443 // If TRUE, enable JIT compiler debugging/tracing. 443 // If TRUE, enable JIT compiler debugging/tracing.
444 extern bool Venable_jit_debug; 444 extern bool Venable_jit_debugging;
445 445
446 // If TRUE, enable JIT compiler. 446 // If TRUE, enable JIT compiler.
447 extern bool Venable_jit_compiler; 447 extern bool Venable_jit_compiler;
448 448
449 #endif 449 #endif