diff options
| author | Frits van Bommel <fvbommel@gmail.com> | 2010-12-03 14:54:33 +0000 |
|---|---|---|
| committer | Frits van Bommel <fvbommel@gmail.com> | 2010-12-03 14:54:33 +0000 |
| commit | ffea0b29e92c9f66e70a7c369195a0cf4f39fdeb (patch) | |
| tree | f1f61b6e2d046e007a64aadd0adda461e963dd5e | |
| parent | 23e6bdf1aef8943cea7215789ea63c601facf014 (diff) | |
| download | bcm5719-llvm-ffea0b29e92c9f66e70a7c369195a0cf4f39fdeb.tar.gz bcm5719-llvm-ffea0b29e92c9f66e70a7c369195a0cf4f39fdeb.zip | |
Fix paste-o in ExtractValueInst::getIndexedType() comments.
llvm-svn: 120804
| -rw-r--r-- | llvm/include/llvm/Instructions.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/include/llvm/Instructions.h b/llvm/include/llvm/Instructions.h index c681b7f4061..eab167db148 100644 --- a/llvm/include/llvm/Instructions.h +++ b/llvm/include/llvm/Instructions.h @@ -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, |

