aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-07-30 18:48:31 +0000
committerlloyd <[email protected]>2013-07-30 18:48:31 +0000
commit8de61c663139ece92c23242854262efef8cd7c4d (patch)
treedbb9d965548e4ebae9160868137774209accf7c1 /src/utils
parent929a271f0c8e1eed79527d0663d75cd371b9841a (diff)
Merge mp_word64 into mp_generic
Now 64-bit limbs can be used regardless of processor, though we continue to use 32-bit unless we know the processor natively supports 64-bit operations.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/info.txt2
-rw-r--r--src/utils/mul128.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/utils/info.txt b/src/utils/info.txt
index 1d77b87a7..59dffa4ae 100644
--- a/src/utils/info.txt
+++ b/src/utils/info.txt
@@ -15,7 +15,6 @@ zero_mem.cpp
<header:internal>
bit_ops.h
-mul128.h
prefetch.h
rounding.h
semaphore.h
@@ -33,6 +32,7 @@ exceptn.h
get_byte.h
loadstor.h
mem_ops.h
+mul128.h
parsing.h
rotate.h
types.h
diff --git a/src/utils/mul128.h b/src/utils/mul128.h
index 83d6f5aa6..7927e5d08 100644
--- a/src/utils/mul128.h
+++ b/src/utils/mul128.h
@@ -118,6 +118,4 @@ inline void mul64x64_128(u64bit a, u64bit b, u64bit* lo, u64bit* hi)
}
-}
-
#endif