Bunch 'o experimental changes

This commit is contained in:
Alex Hultman
2023-05-07 01:28:07 +02:00
parent 6f7d8657a4
commit abb22793ff
8 changed files with 220 additions and 29 deletions
+3 -1
View File
@@ -55,7 +55,9 @@ private:
/* Write an unsigned 32-bit integer in hex */
void writeUnsignedHex(unsigned int value) {
char buf[10];
/* Buf really only needs to be 8 long but building with
* -mavx2, GCC still wants to overstep it so made it 16 */
char buf[16];
int length = utils::u32toaHex(value, buf);
/* For now we do this copy */