Skip to content

Commit

Permalink
Fixed long lines in std/internal/math/biguintx86.d
Browse files Browse the repository at this point in the history
  • Loading branch information
JackStouffer committed May 11, 2016
1 parent de82527 commit 531ae8e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion std/internal/math/biguintx86.d
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,8 @@ unittest
{
uint [] aa = [0xF0FF_FFFF, 0x1222_2223, 0x4555_5556, 0x8999_999A, 0xBCCC_CCCD, 0xEEEE_EEEE];
multibyteMul(aa[1..4], aa[1..4], 16, 0);
assert(aa[0] == 0xF0FF_FFFF && aa[1] == 0x2222_2230 && aa[2]==0x5555_5561 && aa[3]==0x9999_99A4 && aa[4]==0x0BCCC_CCCD);
assert(aa[0] == 0xF0FF_FFFF && aa[1] == 0x2222_2230 &&
aa[2]==0x5555_5561 && aa[3]==0x9999_99A4 && aa[4]==0x0BCCC_CCCD);
}

// The inner multiply-and-add loop, together with the Even entry point.
Expand Down

0 comments on commit 531ae8e

Please sign in to comment.