Lee Killough
Lee Killough
The script has been updated to highlight red error message for unresolved symbols on terminals: https://github.com/tactcomplabs/rev/blob/devel/scripts/test_undefined_symbols.sh
To me, `rd'/rs1'` implies an OR relationship (either `rd'` or `rs1'` or both). The same is true of all cells which list registers separated by `/`. So each cell needs...
Hmm. I thought I removed all blockmap limits in MBF. But I guess large WADs can push the limits. Lemme know if you have any questions. I don't play Doom...
Ah, signed/unsigned corner cases. I'm actually working on a project right now where floating-point values are converted to signed or unsigned integers in an instruction set simulator, and I'm having...
~~FYI, for curiosity, I tried this, but I am getting data corruption causing an infinite loop.~~ `src/BuildEvents.cpp` ``` 701 r.Read(childCount); 702 e.children.resize(childCount); (gdb) p childCount $7 = 21474836480 ``` ~~The...
If you check the CI/CD build, you see one compiler error. ``` kernels/sifive_x280/1/bli_invscalv_sifive_x280_intr/./bli_invscalv_sifive_x280_intr_complex.c:68:43: fatal error: call to undeclared function '__riscv_vundefined_f32m4x2'; ISO C99 and later do not support implicit function declarations...
Integer types (`size_t`, `guint_t`, `int`) are mixed; some occurrences do not have a type conversion. This would be problem if potentially unsafe integer conversions were disallowed. However, I think that...
@xor2k: There is no "official" BLAS standard à la ISO; it is mostly a set of de facto standards which have developed since the BLAS Level-1 was [originally proposed](https://ntrs.nasa.gov/api/citations/19740005175/downloads/19740005175.pdf) and...
Is it possible to mitigate the problem with `__attribute__((weak))`?
I immediately thought about a feature like this while reviewing https://github.com/chapel-lang/chapel/pull/17481. In C++ terminology, it's called the _[underlying type](https://en.cppreference.com/w/cpp/types/underlying_type)_ of an `enum`. I think either signed or unsigned `int` should...