Skip to content

Commit 31e17f0

Browse files
author
Volker Waurich
committed
- added debugflag implOde to activate implicite codegen
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@20078 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent 0783070 commit 31e17f0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Compiler/Util/Flags.mo

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,8 @@ constant DebugFlag HPCOM_ANALYZATION_MODE = DEBUG_FLAG(107, "hpcomAnalyzationMod
381381
Util.gettext("Creates statically linked c++ - code for analyzation (requires statically build cpp-runtime)"));
382382
constant DebugFlag STRICT_RML = DEBUG_FLAG(108, "strictRml", false,
383383
Util.gettext("Turns on extra RML checks."));
384+
constant DebugFlag IMPL_ODE = DEBUG_FLAG(109, "implOde", false,
385+
Util.gettext("activates implicit codegen"));
384386
// This is a list of all debug flags, to keep track of which flags are used. A
385387
// flag can not be used unless it's in this list, and the list is checked at
386388
// initialization so that all flags are sorted by index (and thus have unique
@@ -493,7 +495,8 @@ constant list<DebugFlag> allDebugFlags = {
493495
DUMP_TRANSFORMED_MODELICA_MODEL,
494496
EVALUATE_CONST_FUNCTIONS,
495497
HPCOM_ANALYZATION_MODE,
496-
STRICT_RML
498+
STRICT_RML,
499+
IMPL_ODE
497500
};
498501

499502
// CONFIGURATION FLAGS

0 commit comments

Comments
 (0)