diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-06-05 15:50:49 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 15:50:49 -0600 |
commit | e8fb557b8f5fb45d3778a2a562a79546d5eedb55 (patch) | |
tree | 8a32bfa198ab1fa530bed6c3d77632133535e38c /numpy | |
parent | 727756e63419794d4f8e28f10f61be30051629d9 (diff) | |
download | numpy-e8fb557b8f5fb45d3778a2a562a79546d5eedb55.tar.gz |
MAINT: Add comment in dragon4 code.
[ci skip]
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/src/multiarray/dragon4.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/src/multiarray/dragon4.c b/numpy/core/src/multiarray/dragon4.c index 27ecded65..8f7dc0e2a 100644 --- a/numpy/core/src/multiarray/dragon4.c +++ b/numpy/core/src/multiarray/dragon4.c @@ -235,6 +235,7 @@ BigInt_Set_2x_uint64(BigInt *i, npy_uint64 hi, npy_uint64 lo) i->length = 0; } + /* Note deliberate fallthrough in this switch */ switch (i->length) { case 4: i->blocks[3] = (hi >> 32) & bitmask_u64(32); |