diff options
author | Diego Novillo <dnovillo@google.com> | 2015-04-30 12:27:51 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@google.com> | 2015-04-30 12:27:51 +0000 |
commit | e1133e367ba9d3279f2f7ab03cbf9c8b6ede6ace (patch) | |
tree | 27703cb4cae89561f0f2fd841a4f24a6265dcefa /llvm/unittests/Support/ScaledNumberTest.cpp | |
parent | 6884aa1b43beb4ee6154e94978b76b97fc019cf4 (diff) | |
download | bcm5719-llvm-e1133e367ba9d3279f2f7ab03cbf9c8b6ede6ace.tar.gz bcm5719-llvm-e1133e367ba9d3279f2f7ab03cbf9c8b6ede6ace.zip |
Fix typo in comment. NFC.
llvm-svn: 236227
Diffstat (limited to 'llvm/unittests/Support/ScaledNumberTest.cpp')
-rw-r--r-- | llvm/unittests/Support/ScaledNumberTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/ScaledNumberTest.cpp b/llvm/unittests/Support/ScaledNumberTest.cpp index d8d6e310ff9..216292cc265 100644 --- a/llvm/unittests/Support/ScaledNumberTest.cpp +++ b/llvm/unittests/Support/ScaledNumberTest.cpp @@ -155,7 +155,7 @@ TEST(ScaledNumberHelpersTest, getQuotient) { EXPECT_EQ(SP32(0xaaaaaaab, -33), getQuotient32(1, 3)); EXPECT_EQ(SP32(0xd5555555, -31), getQuotient32(5, 3)); - // 64-bit division is hard to test, since divide64 doesn't canonicalized its + // 64-bit division is hard to test, since divide64 doesn't canonicalize its // output. However, this is the algorithm the implementation uses: // // - Shift divisor right. |