(x uint64)
| 92 | } |
| 93 | |
| 94 | func uint64InExpectedOrder(x uint64) uint64 { |
| 95 | /* |
| 96 | if !little { |
| 97 | return bswap64(x) |
| 98 | } |
| 99 | */ |
| 100 | |
| 101 | return x |
| 102 | } |
| 103 | |
| 104 | // If I understand the original code correctly, it's expecting to load either 8 or 4 |
| 105 | // byes in little endian order. so let's just simplify it a bit since we will do that |
nothing calls this directly
no outgoing calls
no test coverage detected