| 1113 | } |
| 1114 | |
| 1115 | struct libdivide_s64_t libdivide_s64_gen(int64_t d) { |
| 1116 | return libdivide_internal_s64_gen(d, 0); |
| 1117 | } |
| 1118 | |
| 1119 | struct libdivide_s64_branchfree_t libdivide_s64_branchfree_gen(int64_t d) { |
| 1120 | struct libdivide_s64_t tmp = libdivide_internal_s64_gen(d, 1); |
nothing calls this directly
no test coverage detected