comparison dyncall/dyncall_callvm_mips_o32.c @ 465:e2899b4ff713

- // -> /* */, mainly for consistency (but also for a few obscure compilers)
author Tassilo Philipp
date Wed, 02 Feb 2022 12:55:23 +0100
parents ad5f9803f52f
children ddfb9577a00e
comparison
equal deleted inserted replaced
464:bd65767c0534 465:e2899b4ff713
123 if (self->mArgCount < 2) { 123 if (self->mArgCount < 2) {
124 /* @@@ unsure if we should zero init, here; seems to work as-is */ 124 /* @@@ unsure if we should zero init, here; seems to work as-is */
125 # if defined(DC__Endian_LITTLE) 125 # if defined(DC__Endian_LITTLE)
126 self->mRegData.u[self->mArgCount].f[0] = x; 126 self->mRegData.u[self->mArgCount].f[0] = x;
127 # else 127 # else
128 self->mRegData.u[self->mArgCount].f[1] = x; // floats in regs always right justified 128 self->mRegData.u[self->mArgCount].f[1] = x; /* floats in regs always right justified */
129 # endif 129 # endif
130 # if 0 130 # if 0
131 self->mRegData.u[self->mArgCount].f[1] = x; 131 self->mRegData.u[self->mArgCount].f[1] = x;
132 call kernel 132 call kernel
133 133