Fix a typo.
authorRoman Divacky <rdivacky@freebsd.org>
Sun, 7 Feb 2016 15:50:55 +0000 (15:50 +0000)
committerRoman Divacky <rdivacky@freebsd.org>
Sun, 7 Feb 2016 15:50:55 +0000 (15:50 +0000)
llvm-svn: 260038

llvm/include/llvm/ADT/PointerEmbeddedInt.h

index 8781d18..7f86bf8 100644 (file)
@@ -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); }
 };