summaryrefslogtreecommitdiffstats
path: root/crypto/bn/asm
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@ghedini.me>2015-10-08 14:40:42 +0200
committerRichard Levitte <levitte@openssl.org>2015-10-23 19:52:08 +0200
commitd900a015b5a89ea2018e6122dd2738925e4d68ab (patch)
tree5702ebcf150d8706b6070964adce3377ecb8840f /crypto/bn/asm
parentc2319cf9fce87a2e82efb6e58ced11a85190dc3d (diff)
Fix typos
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/bn/asm')
-rw-r--r--crypto/bn/asm/ia64.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/asm/ia64.S b/crypto/bn/asm/ia64.S
index c0cee8211c..a9a42abfc3 100644
--- a/crypto/bn/asm/ia64.S
+++ b/crypto/bn/asm/ia64.S
@@ -422,7 +422,7 @@ bn_mul_add_words:
// This loop spins in 3*(n+10) ticks on Itanium and in 2*(n+10) on
// Itanium 2. Yes, unlike previous versions it scales:-) Previous
-// version was peforming *all* additions in IALU and was starving
+// version was performing *all* additions in IALU and was starving
// for those even on Itanium 2. In this version one addition is
// moved to FPU and is folded with multiplication. This is at cost
// of propogating the result from previous call to this subroutine