[llvm] r260038 - Fix a typo.

Roman Divacky via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 7 07:50:56 PST 2016


Author: rdivacky
Date: Sun Feb  7 09:50:55 2016
New Revision: 260038

URL: http://llvm.org/viewvc/llvm-project?rev=260038&view=rev
Log:
Fix a typo.

Modified:
    llvm/trunk/include/llvm/ADT/PointerEmbeddedInt.h

Modified: llvm/trunk/include/llvm/ADT/PointerEmbeddedInt.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/PointerEmbeddedInt.h?rev=260038&r1=260037&r2=260038&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/PointerEmbeddedInt.h (original)
+++ llvm/trunk/include/llvm/ADT/PointerEmbeddedInt.h Sun Feb  7 09:50:55 2016
@@ -58,7 +58,7 @@ public:
     Value = static_cast<uintptr_t>(I) << Shift;
   }
 
-  // Note that this imilict conversion additionally allows all of the basic
+  // Note that this implicit conversion additionally allows all of the basic
   // comparison operators to work transparently, etc.
   operator IntT() const { return static_cast<IntT>(Value >> Shift); }
 };




More information about the llvm-commits mailing list