mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Improved support for vectors that allows correct usage in C ABI.
To free keywords, half -> float16, i128 -> int128, u128 -> uint128, quad -> float128.
This commit is contained in:
committed by
Christoffer Lerno
parent
991f24d06a
commit
afeb555e2f
@@ -53,8 +53,8 @@ $else:
|
||||
$endif;
|
||||
|
||||
$if (C_LONG_LONG_SIZE == 128):
|
||||
define CLongLong = i128;
|
||||
define CULongLong = u128;
|
||||
define CLongLong = int128;
|
||||
define CULongLong = uint128;
|
||||
$elif (C_LONG_LONG_SIZE == 64):
|
||||
define CLongLong = long;
|
||||
define CULongLong = ulong;
|
||||
|
||||
Reference in New Issue
Block a user