hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 12e10e27586d3a9bc45621d63fa3a9286ddff1d6
parent d9358a46c585378ab30f5272a0b694ed5ceaad9a
Author: Sebastian <sebastian@sebsite.pw>
Date:   Fri,  4 Aug 2023 00:33:38 -0400

hare::types: remove builtin_null

This wasn't actually used, nor should it be since its size is
architecture-dependent.

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mhare/types/builtins.ha | 8--------
1 file changed, 0 insertions(+), 8 deletions(-)

diff --git a/hare/types/builtins.ha b/hare/types/builtins.ha @@ -50,13 +50,6 @@ export const builtin_i64: _type = _type { ... }; -// [[_type]] representation of null. -export const builtin_null: _type = _type { - repr = builtin::NULL, - sz = 0, _align = 0, - ... -}; - // [[_type]] representation of opaque. export const builtin_opaque: _type = _type { repr = builtin::OPAQUE, @@ -115,7 +108,6 @@ export const builtin_void: _type = _type { &builtin_i16, &builtin_i32, &builtin_i64, - &builtin_null, &builtin_opaque, &builtin_rune, &builtin_u8,