gocc icon indicating copy to clipboard operation
gocc copied to clipboard

Generate Go Plan9 assembly from C code

Results 2 gocc issues
Sort by recently updated
recently updated
newest added

Running the example on M1 was causing a panic because of uninitialized regex

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;...