| 845 | |
| 846 | int *getTempOutIntStore(int alignmentBytes) { return (int*)getTempOutFloatStore(alignmentBytes); } |
| 847 | double *getTempOutDoubleStore(int alignmentBytes) { return (double*)getTempOutFloatStore(alignmentBytes); } |
| 848 | |
| 849 | #define void_OutFloatPtr_M128(func, Ptr_type, numBytesWritten, alignmentBytes) \ |
| 850 | for(int i = 0; i < numInterestingFloats / 4; ++i) \ |
nothing calls this directly
no test coverage detected