From c8dee3f7ad60e76bdac597ee47f8d9e3470cc8ff Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 8 Sep 2009 03:39:55 +0000 Subject: [PATCH] fix pasto git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81184 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Instructions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 29395ebca28..e208f37868a 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -1321,7 +1321,7 @@ public: const Value *getIndexOperand() const { return Op<1>(); } const VectorType *getVectorOperandType() const { - return reinterpret_cast(Instruction::getType()); + return reinterpret_cast(getVectorOperand()->getType()); } -- 2.34.1