summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-04-20 04:52:49 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-04-20 04:52:49 -0700
commit3ad496e4a6e1424e1a122ee280cdf4e0f2f24683 (patch)
treee826f7ef4fc5bb23fd478fdc901f40f0b6bc1740 /lib.h
parentd467598989bcd815adf30e42f9a67a73929f9d71 (diff)
downloadtxr-3ad496e4a6e1424e1a122ee280cdf4e0f2f24683.tar.gz
txr-3ad496e4a6e1424e1a122ee280cdf4e0f2f24683.tar.bz2
txr-3ad496e4a6e1424e1a122ee280cdf4e0f2f24683.zip
configure: remove LIT_ALIGN.
LIT_ALIGN was introduced before there was SIZEOF_WCHAR_T. The latter was introduced on suspicion that they might not be the same. Since LIT_ALIGN is tied to SIZEOF_WCHAR_T again there is no need for it to exist. * configure (lit_align): Variable removed. Documentation of lit-align argument removed. Alignment of wide literals test removed. Not generating LIT_ALIGN in config.h any more. * lib.h (LIT_ALIGN): Occurrences replaced with SIZEOF_WCHAR_T.
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib.h b/lib.h
index 0eaa77d7..d95642b1 100644
--- a/lib.h
+++ b/lib.h
@@ -425,7 +425,7 @@ INLINE type_t type(val obj)
typedef struct wli wchli_t;
-#if LIT_ALIGN < 4
+#if SIZEOF_WCHAR_T < 4
#define wli_noex(lit) (coerce(const wchli_t *,\
convert(const wchar_t *,\
L"\0" L ## lit L"\0" + 1)))
@@ -452,7 +452,7 @@ INLINE val static_str(const wchli_t *str)
INLINE wchar_t *litptr(val obj)
{
-#if LIT_ALIGN < 4
+#if SIZEOF_WCHAR_T < 4
wchar_t *ret = coerce(wchar_t *, (coerce(cnum, obj) & ~TAG_MASK));
return (*ret == 0) ? ret + 1 : ret;
#else
@@ -479,7 +479,7 @@ INLINE cnum c_n(val num)
{
return coerce(cnum, num) >> TAG_SHIFT;
}
-#if LIT_ALIGN < 4
+#if SIZEOF_WCHAR_T < 4
#define lit_noex(strlit) coerce(obj_t *,\
coerce(cnum, L"\0" L ## strlit L"\0" + 1) | \
TAG_LIT)