~ chicken-core (chicken-5) f40315d02e477bd6d24e29bc04f95dd12f8a5934
commit f40315d02e477bd6d24e29bc04f95dd12f8a5934
Author: Peter Bex <peter@more-magic.net>
AuthorDate: Sun Jan 29 17:37:53 2017 +0100
Commit: Kooda <kooda@upyum.com>
CommitDate: Sat Feb 25 17:26:15 2017 +0100
Remove unused C_c_regparm definition & fix typo
Signed-off-by: Kooda <kooda@upyum.com>
diff --git a/c-backend.scm b/c-backend.scm
index 96a2959c..c059c393 100644
--- a/c-backend.scm
+++ b/c-backend.scm
@@ -647,7 +647,6 @@
(apply gen varlist)
(gen "C_word *av"))
(gen #\))
- ;;(when customizable (gen " C_c_regparm"))
(unless direct (gen " C_noret"))
(gen #\;) ))
lambda-table) )
diff --git a/chicken.h b/chicken.h
index f3f16ebe..caabbd4f 100644
--- a/chicken.h
+++ b/chicken.h
@@ -274,15 +274,13 @@ void *alloca ();
# define C_aligned
#endif
-#define C_c_regparm
-
#if defined(__GNUC__) || defined(__INTEL_COMPILER) || defined(__cplusplus)
# define C_inline inline static
#else
# define C_inline static
#endif
-/* Thread Local Stoarage */
+/* Thread Local Storage */
#ifdef C_ENABLE_TLS
# if defined(__GNUC__)
# define C_TLS __thread
Trap