diff mbox series

[4/8] arch: do not needlessly set bitness on 32-bit archs

Message ID 20191115011355.53495-5-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 code at the start of init_target() already take care
of making the arch variants match their bitness. There is
no need to redo that while setting the type of [u]int32.

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

Patch

diff --git a/target.c b/target.c
index 647817a22..bdda7ec7f 100644
--- a/target.c
+++ b/target.c
@@ -114,7 +114,6 @@  void init_target(void)
 	case MACH_PPC32:
 	case MACH_MIPS32:
 	case MACH_RISCV32:
-		arch_m64 = ARCH_LP32;
 		int32_ctype = &long_ctype;
 		uint32_ctype = &ulong_ctype;
 		break;