Fix paste-o in ExtractValueInst::getIndexedType() comments.
authorFrits van Bommel <fvbommel@gmail.com>
Fri, 3 Dec 2010 14:54:33 +0000 (14:54 +0000)
committerFrits van Bommel <fvbommel@gmail.com>
Fri, 3 Dec 2010 14:54:33 +0000 (14:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120804 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Instructions.h

index c681b7f40619b45041d87ceeb20bd9e403bebab1..eab167db148a5877a5a14d770d3bf21100e19873 100644 (file)
@@ -1450,8 +1450,7 @@ class ExtractValueInst : public UnaryInstruction {
   /// getIndexedType - Returns the type of the element that would be extracted
   /// with an extractvalue instruction with the specified parameters.
   ///
-  /// Null is returned if the indices are invalid for the specified
-  /// pointer type.
+  /// Null is returned if the indices are invalid for the specified type.
   ///
   static const Type *getIndexedType(const Type *Agg,
                                     const unsigned *Idx, unsigned NumIdx);
@@ -1534,8 +1533,7 @@ public:
   /// getIndexedType - Returns the type of the element that would be extracted
   /// with an extractvalue instruction with the specified parameters.
   ///
-  /// Null is returned if the indices are invalid for the specified
-  /// pointer type.
+  /// Null is returned if the indices are invalid for the specified type.
   ///
   template<typename RandomAccessIterator>
   static const Type *getIndexedType(const Type *Ptr,