aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2019-11-11 12:20:22 +0100
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2019-11-14 01:40:21 +0100
commit6096ede6c8ddc37e66d3d84f388e2e69b15f7073 (patch)
treeb67c43f34bf6785f1958c5f17fd56ae7e9d80c98
parentc67fc56d34f0446b1fa9c748381011cce1c3e017 (diff)
downloadsparse-6096ede6c8ddc37e66d3d84f388e2e69b15f7073.tar.gz
arch: do not needlessly set bitness on 32-bit archs
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>
-rw-r--r--target.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/target.c b/target.c
index 647817a2..bdda7ec7 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;