summaryrefslogtreecommitdiff
path: root/nt/preprep.c
diff options
context:
space:
mode:
authorAndrew Innes <andrewi@gnu.org>1999-05-02 09:59:03 +0000
committerAndrew Innes <andrewi@gnu.org>1999-05-02 09:59:03 +0000
commit3102421f63b7ce05acf079625d2e8ff569cb6104 (patch)
tree707c5a5484c01e16f3960c187ee501f11db649b3 /nt/preprep.c
parent1d99979dfd20060ed1b32b8c9c9ee368dcac4c5d (diff)
downloademacs-3102421f63b7ce05acf079625d2e8ff569cb6104.tar.gz
(copy_executable_and_move_sections): Ifdef out a
couple of unused switch cases that aren't defined on all platforms.
Diffstat (limited to 'nt/preprep.c')
-rw-r--r--nt/preprep.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/nt/preprep.c b/nt/preprep.c
index c9af636707b..a33d3f049d3 100644
--- a/nt/preprep.c
+++ b/nt/preprep.c
@@ -741,9 +741,12 @@ copy_executable_and_move_sections (file_data *p_infile,
dropped from NT4 anyway. */
abort ();
break;
+#ifndef IMAGE_REL_BASED_SECTION
case IMAGE_REL_BASED_SECTION:
case IMAGE_REL_BASED_REL32:
/* Docs don't say what these values mean. */
+#endif
+ default:
abort ();
}
}