pike.git/
src/
pike_types.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2022-05-31
2022-05-31 10:41:36 by Henrik Grubbström (Grubba) <grubba@grubba.org>
245515d676f23a8f18d5275a9dd62c15e841af4e (
4
lines) (+
3
/-
1
)
[
Show
|
Annotate
]
Branch:
master
Compiler
[Typechecker]
: Improved handling of mixed when CMP_NULLABLE.
5959:
goto recur; } }
-
if (bflags &
(
PT_FLAG_CMP_
NULLABLE
| PT_FLAG_CMP_
VOID
_
IS_ZERO
)) {
+
if (
(
bflags & PT_FLAG_CMP_
VOID_IS_ZERO)
|
|
+
((bflags &
PT_FLAG_CMP_
NULLABLE) && (a->type != T
_
MIXED
))
)
{
b = zero_type_string; goto recur; }