[llvm] 584face - [ExecutionEngine] Remove unused declaration executeCastOperation

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Sun Jun 11 13:19:41 PDT 2023


Author: Kazu Hirata
Date: 2023-06-11T13:19:25-07:00
New Revision: 584face6b462fcedd8d17514a9b1b341ddf0ec02

URL: https://github.com/llvm/llvm-project/commit/584face6b462fcedd8d17514a9b1b341ddf0ec02
DIFF: https://github.com/llvm/llvm-project/commit/584face6b462fcedd8d17514a9b1b341ddf0ec02.diff

LOG: [ExecutionEngine] Remove unused declaration executeCastOperation

The corresponding function definition was removed by:

  commit 7a9c62baa66ae262755db0d3221ce095d48681d5
  Author: Reid Spencer <rspencer at reidspencer.com>
  Date:   Fri Jan 12 07:05:14 2007 +0000

Added: 
    

Modified: 
    llvm/lib/ExecutionEngine/Interpreter/Interpreter.h

Removed: 
    


################################################################################
diff  --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
index 3dfe736dc5be4..41a0389442d38 100644
--- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
+++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -224,8 +224,6 @@ class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
                                    ExecutionContext &SF);
   GenericValue executeBitCastInst(Value *SrcVal, Type *DstTy,
                                   ExecutionContext &SF);
-  GenericValue executeCastOperation(Instruction::CastOps opcode, Value *SrcVal,
-                                    Type *Ty, ExecutionContext &SF);
   void popStackAndReturnValueToCaller(Type *RetTy, GenericValue Result);
 
 };


        


More information about the llvm-commits mailing list