Undo set bits after CPU
authorRobert Pengelly <robertapengelly@hotmail.com>
Mon, 9 Jun 2025 16:12:52 +0000 (17:12 +0100)
committerRobert Pengelly <robertapengelly@hotmail.com>
Mon, 9 Jun 2025 16:12:52 +0000 (17:12 +0100)
intel.c

diff --git a/intel.c b/intel.c
index 9fbb623298983b2f4ff6fa630af624a47255af0b..e77595fdfbef4d5afe8abc4fbf12447d134bf699 100644 (file)
--- a/intel.c
+++ b/intel.c
@@ -1833,7 +1833,6 @@ static void handler_8086 (char *start, char **pp) {
     (void) pp;
     
     machine_dependent_set_march ("i8086");
-    machine_dependent_set_bits (16, 0);
 
 }
 
@@ -1843,7 +1842,6 @@ static void handler_8087 (char *start, char **pp) {
     (void) pp;
     
     machine_dependent_set_march ("i8086+8087");
-    machine_dependent_set_bits (16, 0);
 
 }
 
@@ -1853,7 +1851,6 @@ static void handler_186 (char *start, char **pp) {
     (void) pp;
     
     machine_dependent_set_march ("i186");
-    machine_dependent_set_bits (16, 0);
 
 }
 
@@ -1863,7 +1860,6 @@ static void handler_286 (char *start, char **pp) {
     (void) pp;
     
     machine_dependent_set_march ("i286");
-    machine_dependent_set_bits (16, 0);
 
 }
 
@@ -1873,7 +1869,6 @@ static void handler_287 (char *start, char **pp) {
     (void) pp;
     
     machine_dependent_set_march ("i286+287");
-    machine_dependent_set_bits (16, 0);
 
 }
 
@@ -1883,7 +1878,6 @@ static void handler_386 (char *start, char **pp) {
     (void) pp;
     
     machine_dependent_set_march ("i386");
-    machine_dependent_set_bits (32, 0);
 
 }
 
@@ -1893,7 +1887,6 @@ static void handler_387 (char *start, char **pp) {
     (void) pp;
     
     machine_dependent_set_march ("i386+387");
-    machine_dependent_set_bits (32, 0);
 
 }
 
@@ -1903,7 +1896,6 @@ static void handler_486 (char *start, char **pp) {
     (void) pp;
     
     machine_dependent_set_march ("i486");
-    machine_dependent_set_bits (32, 0);
 
 }
 
@@ -1913,7 +1905,6 @@ static void handler_586 (char *start, char **pp) {
     (void) pp;
     
     machine_dependent_set_march ("i586");
-    machine_dependent_set_bits (32, 0);
 
 }
 
@@ -1923,7 +1914,6 @@ static void handler_686 (char *start, char **pp) {
     (void) pp;
     
     machine_dependent_set_march ("i686");
-    machine_dependent_set_bits (32, 0);
 
 }