diff options
Diffstat (limited to 'sim/ppc/std-config.h')
-rw-r--r-- | sim/ppc/std-config.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sim/ppc/std-config.h b/sim/ppc/std-config.h index e1b308c..86214c0 100644 --- a/sim/ppc/std-config.h +++ b/sim/ppc/std-config.h @@ -275,10 +275,18 @@ extern int current_floating_point; #define WITH_DEFAULT_MODEL DEFAULT_MODEL #endif +#define MODEL_ISSUE_IGNORE (-1) +#define MODEL_ISSUE_PROCESS 1 + #ifndef WITH_MODEL_ISSUE -#define WITH_MODEL_ISSUE 1 +#define WITH_MODEL_ISSUE 0 #endif +extern int current_model_issue; +#define CURRENT_MODEL_ISSUE (WITH_MODEL_ISSUE \ + ? WITH_MODEL_ISSUE \ + : current_model_issue) + /* INLINE CODE SELECTION: GCC -O3 attempts to inline any function or procedure in scope. The |