mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-01 08:28:19 +00:00
Fix comment typo.
llvm-svn: 67302
This commit is contained in:
parent
6ec09863f0
commit
45d4adde66
@ -1629,7 +1629,7 @@ void APInt::divide(const APInt LHS, unsigned lhsWords,
|
||||
// and the the Knuth "classical algorithm" which requires there to be native
|
||||
// operations for +, -, and * on an m bit value with an m*2 bit result. We
|
||||
// can't use 64-bit operands here because we don't have native results of
|
||||
// 128-bits. Furthremore, casting the 64-bit values to 32-bit values won't
|
||||
// 128-bits. Furthermore, casting the 64-bit values to 32-bit values won't
|
||||
// work on large-endian machines.
|
||||
uint64_t mask = ~0ull >> (sizeof(unsigned)*8);
|
||||
unsigned n = rhsWords * 2;
|
||||
|
Loading…
Reference in New Issue
Block a user