aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Innes1999-05-02 09:59:03 +0000
committerAndrew Innes1999-05-02 09:59:03 +0000
commit3102421f63b7ce05acf079625d2e8ff569cb6104 (patch)
tree707c5a5484c01e16f3960c187ee501f11db649b3
parent1d99979dfd20060ed1b32b8c9c9ee368dcac4c5d (diff)
downloademacs-3102421f63b7ce05acf079625d2e8ff569cb6104.tar.gz
emacs-3102421f63b7ce05acf079625d2e8ff569cb6104.zip
(copy_executable_and_move_sections): Ifdef out a
couple of unused switch cases that aren't defined on all platforms.
-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,
741 dropped from NT4 anyway. */ 741 dropped from NT4 anyway. */
742 abort (); 742 abort ();
743 break; 743 break;
744#ifndef IMAGE_REL_BASED_SECTION
744 case IMAGE_REL_BASED_SECTION: 745 case IMAGE_REL_BASED_SECTION:
745 case IMAGE_REL_BASED_REL32: 746 case IMAGE_REL_BASED_REL32:
746 /* Docs don't say what these values mean. */ 747 /* Docs don't say what these values mean. */
748#endif
749 default:
747 abort (); 750 abort ();
748 } 751 }
749 } 752 }