diff options
author | lloyd <[email protected]> | 2006-08-15 17:06:57 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-08-15 17:06:57 +0000 |
commit | d0a5ecdb4f7b1ddbefdc6a46525c276b9203abfe (patch) | |
tree | 1fb436168fe3a26c96c9f1c840269e39bca07463 /modules/alg_ia32/serp_asm.S | |
parent | 3ba05971bb1ac7b689a636d78680f3abc1cbf14d (diff) |
Add a distinct loop ending for loop-until-equals-immediate; other loops
ending conditions will be needed later.
Diffstat (limited to 'modules/alg_ia32/serp_asm.S')
-rw-r--r-- | modules/alg_ia32/serp_asm.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/alg_ia32/serp_asm.S b/modules/alg_ia32/serp_asm.S index ddaa99606..718e8cb74 100644 --- a/modules/alg_ia32/serp_asm.S +++ b/modules/alg_ia32/serp_asm.S @@ -609,7 +609,7 @@ START_LOOP(.EXPANSION) ADD_IMM(ESI, 1) ADD_IMM(EDI, 4) -LOOP_UNTIL(ESI, IMM(140), .EXPANSION) +LOOP_UNTIL_EQ(ESI, 140, .EXPANSION) ASSIGN(EDI, ARG(1)) /* round keys */ |