diff mbox series

[2/8] arch: simplify i386/x86-64 specifics

Message ID 20191115011355.53495-3-luc.vanoostenryck@gmail.com (mailing list archive)
State Superseded, archived
Headers show
Series Miscellaneous arch specific fixes | expand

Commit Message

Luc Van Oostenryck Nov. 15, 2019, 1:13 a.m. UTC
The current test for setting wchar on i386 uses a
conditional break and a fallthrough on the x86-64 case.

This is not needed and can be simplified by reversing the
order of the i386 & x86-64 cases.

Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
---
 target.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/target.c b/target.c
index 497ecdc5e..acafbd929 100644
--- a/target.c
+++ b/target.c
@@ -79,11 +79,11 @@  void init_target(void)
 	}
 
 	switch (arch_mach) {
-	case MACH_X86_64:
-		if (arch_m64 == ARCH_LP64)
-			break;
-		/* fall through */
 	case MACH_I386:
+		wchar_ctype = &long_ctype;
+		/* fall through */
+	case MACH_X86_64:
+		break;
 	case MACH_M68K:
 	case MACH_SPARC32:
 	case MACH_PPC32: