[llvm] r217597 - typo
Sanjay Patel
spatel at rotateright.com
Thu Sep 11 08:41:02 PDT 2014
Author: spatel
Date: Thu Sep 11 10:41:01 2014
New Revision: 217597
URL: http://llvm.org/viewvc/llvm-project?rev=217597&view=rev
Log:
typo
Modified:
llvm/trunk/lib/Support/APInt.cpp
Modified: llvm/trunk/lib/Support/APInt.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/APInt.cpp?rev=217597&r1=217596&r2=217597&view=diff
==============================================================================
--- llvm/trunk/lib/Support/APInt.cpp (original)
+++ llvm/trunk/lib/Support/APInt.cpp Thu Sep 11 10:41:01 2014
@@ -1303,7 +1303,7 @@ APInt APInt::sqrt() const {
// Okay, all the short cuts are exhausted. We must compute it. The following
// is a classical Babylonian method for computing the square root. This code
- // was adapted to APINt from a wikipedia article on such computations.
+ // was adapted to APInt from a wikipedia article on such computations.
// See http://www.wikipedia.org/ and go to the page named
// Calculate_an_integer_square_root.
unsigned nbits = BitWidth, i = 4;
More information about the llvm-commits
mailing list