From b99e2e20b2ad1e7c5bf613fba4ead50e9654876c Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 29 May 2008 19:53:46 +0000 Subject: [PATCH] const-ify getOpcode. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51698 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/InstructionCombining.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 8c2dc3e92f4..74e6b6f6b06 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -603,10 +603,10 @@ static User *dyn_castGetElementPtr(Value *V) { /// getOpcode - If this is an Instruction or a ConstantExpr, return the /// opcode value. Otherwise return UserOp1. -static unsigned getOpcode(Value *V) { - if (Instruction *I = dyn_cast(V)) +static unsigned getOpcode(const Value *V) { + if (const Instruction *I = dyn_cast(V)) return I->getOpcode(); - if (ConstantExpr *CE = dyn_cast(V)) + if (const ConstantExpr *CE = dyn_cast(V)) return CE->getOpcode(); // Use UserOp1 to mean there's no opcode. return Instruction::UserOp1;