aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-11-14 17:15:06 +0000
committerlloyd <[email protected]>2009-11-14 17:15:06 +0000
commitc995540c0774c6f6f48a101deff9ac5fe2a6562a (patch)
tree2999371fbb16db08aebb9402bfe8c917ceac99ec /src/hash
parent4649c8be4c12ade06cd2ff45582606e919b65ed2 (diff)
Instead of having two asm_macr.h files being switched in based on module
build magic, name them asm_macr_ARCH.h. Change all including files accordingly.
Diffstat (limited to 'src/hash')
-rw-r--r--src/hash/md4_ia32/md4_ia32_imp.S2
-rw-r--r--src/hash/md5_ia32/md5_ia32_imp.S2
-rw-r--r--src/hash/sha1_amd64/sha1_amd64_imp.S2
-rw-r--r--src/hash/sha1_ia32/sha1_ia32_imp.S2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/hash/md4_ia32/md4_ia32_imp.S b/src/hash/md4_ia32/md4_ia32_imp.S
index 50f30d9b8..1df972bb9 100644
--- a/src/hash/md4_ia32/md4_ia32_imp.S
+++ b/src/hash/md4_ia32/md4_ia32_imp.S
@@ -5,7 +5,7 @@
* Distributed under the terms of the Botan license
*/
-#include <botan/asm_macr.h>
+#include <botan/asm_macr_ia32.h>
START_LISTING(md4_ia32.S)
diff --git a/src/hash/md5_ia32/md5_ia32_imp.S b/src/hash/md5_ia32/md5_ia32_imp.S
index bf85a26b6..d1aecb834 100644
--- a/src/hash/md5_ia32/md5_ia32_imp.S
+++ b/src/hash/md5_ia32/md5_ia32_imp.S
@@ -5,7 +5,7 @@
* Distributed under the terms of the Botan license
*/
-#include <botan/asm_macr.h>
+#include <botan/asm_macr_ia32.h>
START_LISTING(md5_ia32.S)
diff --git a/src/hash/sha1_amd64/sha1_amd64_imp.S b/src/hash/sha1_amd64/sha1_amd64_imp.S
index e648453dc..d45e2fd86 100644
--- a/src/hash/sha1_amd64/sha1_amd64_imp.S
+++ b/src/hash/sha1_amd64/sha1_amd64_imp.S
@@ -5,7 +5,7 @@
* Distributed under the terms of the Botan license
*/
-#include <botan/asm_macr.h>
+#include <botan/asm_macr_amd64.h>
START_LISTING(sha1_amd64.S)
diff --git a/src/hash/sha1_ia32/sha1_ia32_imp.S b/src/hash/sha1_ia32/sha1_ia32_imp.S
index 3411313c3..3167fce9a 100644
--- a/src/hash/sha1_ia32/sha1_ia32_imp.S
+++ b/src/hash/sha1_ia32/sha1_ia32_imp.S
@@ -5,7 +5,7 @@
* Distributed under the terms of the Botan license
*/
-#include <botan/asm_macr.h>
+#include <botan/asm_macr_ia32.h>
START_LISTING(sha1_ia32.S)