gocc icon indicating copy to clipboard operation
gocc copied to clipboard

Generated code doesn't have return value

Open MajorAdam opened this issue 4 months ago • 0 comments

uint64_t _intersects_avx512(const uint64_t* a,const uint64_t* b, uint64_t n) { #pragma clang loop vectorize(enable) for (uint64_t i = 0; i < n; ++i) { if (a[i] & b[i]) { return 1; } } return 0; }

func _intersects_avx512(a unsafe.Pointer, b unsafe.Pointer, n uint64)

MajorAdam avatar Aug 13 '25 11:08 MajorAdam