bug-mes
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Workaround poitner arithmetic bug of mescc for 64-bit arches.


From: Andrius Štikonas
Subject: [PATCH] Workaround poitner arithmetic bug of mescc for 64-bit arches.
Date: Wed, 25 Oct 2023 01:28:22 +0100

&last + 1 was adding just 4 to address on riscv64.

* include/stdarg.h: Fix va_start to point to correct location.
---
 include/stdarg.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/include/stdarg.h b/include/stdarg.h
index b6705299..6cdf0dd6 100644
--- a/include/stdarg.h
+++ b/include/stdarg.h
@@ -2,6 +2,7 @@
  * GNU Mes --- Maxwell Equations of Software
  * Copyright © 2017,2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
  * Copyright © 2021 W. J. van der Laan <laanwj@protonmail.com>
+ * Copyright © 2023 Andrius Štikonas <andrius@stikonas.eu>
  *
  * This file is part of GNU Mes.
  *
@@ -72,7 +73,7 @@ typedef __builtin_va_list va_list;
 #endif
 
 typedef char *va_list;
-#define va_start(ap, last) (void)((ap) = (char*)(&(last) + 1))
+#define va_start(ap, last) (void)((ap) = (char*)(&(last)) + sizeof (void*))
 #define va_arg(ap, type) (type)(((long*)((ap) = ((ap) + sizeof (void*))))[-1])
 #define va_align(ap, alignment) ((char*)((((unsigned long) (ap)) + (alignment) 
- 1) &~ ((alignment) - 1)))
 #define va_arg8(ap, type) (type)(((double*)((ap) = (va_align((ap), 8) + 
sizeof(double))))[-1])
-- 
2.41.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]