Implement TLSLDM.
[oota-llvm.git] / include / llvm / ADT / SmallSet.h
index caaa96c045f73423881f3ac5931639710e839485..d03f1bef15b11d98e8e4bb30c1fede7aa676c564 100644 (file)
@@ -30,7 +30,7 @@ namespace llvm {
 template <typename T, unsigned N>
 class SmallSet {
   /// Use a SmallVector to hold the elements here (even though it will never
-  /// reach it's 'large' stage) to avoid calling the default ctors of elements
+  /// reach its 'large' stage) to avoid calling the default ctors of elements
   /// we will never use.
   SmallVector<T, N> Vector;
   std::set<T> Set;