diff mbox series

[8/8] arch: arm uses long for int32_t

Message ID 20191115011355.53495-9-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
It seems that ARM uses 'long' for its 'int32_t' type
('seems' because I can't make sense of GCC's source about
this point).

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

Patch

diff --git a/target.c b/target.c
index 530970912..eae88bd5d 100644
--- a/target.c
+++ b/target.c
@@ -105,6 +105,7 @@  void init_target(void)
 	}
 
 	switch (arch_mach) {
+	case MACH_ARM:
 	case MACH_M68K:
 	case MACH_SPARC32:
 	case MACH_PPC32: