diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-11-28 18:47:07 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-11-28 18:47:07 +0000 |
commit | 290ad14a9dd688a94344e1c21e681e2e8d01b0f1 (patch) | |
tree | 6cd17c9b356f288fa36d40ade3730e494cd34e7d /sim/ppc/configure | |
parent | 5aca405826b00ce4fc00055618eeab3e7e231076 (diff) | |
download | gdb-290ad14a9dd688a94344e1c21e681e2e8d01b0f1.zip gdb-290ad14a9dd688a94344e1c21e681e2e8d01b0f1.tar.gz gdb-290ad14a9dd688a94344e1c21e681e2e8d01b0f1.tar.bz2 |
Add determining when we do not have enough writeback slots; Do not do model specific handling if not printing out the information
Diffstat (limited to 'sim/ppc/configure')
-rwxr-xr-x | sim/ppc/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/ppc/configure b/sim/ppc/configure index b8f3443..f172a5c 100755 --- a/sim/ppc/configure +++ b/sim/ppc/configure @@ -909,8 +909,8 @@ fi enableval="$enable_sim_model_issue" if test -n "$enableval"; then case "${enableval}" in - yes) sim_model_issue="-DWITH_MODEL_ISSUE=1";; - no) sim_model_issue="-DWITH_MODEL_ISSUE=0";; + yes) sim_model_issue="-DWITH_MODEL_ISSUE=MODEL_ISSUE_PROCESS";; + no) sim_model_issue="-DWITH_MODEL_ISSUE=MODEL_ISSUE_IGNORE";; *) { echo "configure: error: "--enable-sim-model-issue does not take a value"" 1>&2; exit 1; }; sim_model_issue="";; esac if test x"$silent" != x"yes"; then |