Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / onert / core / include / compiler / CodeMap.h
index b1d861c..93fe43c 100644 (file)
@@ -19,7 +19,7 @@
 
 #include <unordered_map>
 #include "ir/Index.h"
-#include "ir/Operation.h"
+#include "ir/IOperation.h"
 #include "exec/FunctionSequence.h"
 #include "OperationLowerInfo.h"
 
@@ -31,11 +31,11 @@ namespace compiler
 struct CodeAndInfo
 {
   ir::OperationIndex op_ind;
-  const ir::Operation *op;
+  const ir::IOperation *op;
   const OperationLowerInfo *lower_info;
   std::unique_ptr<exec::FunctionSequence> fn_seq;
 
-  CodeAndInfo(const ir::OperationIndex op_ind, const ir::Operation *op,
+  CodeAndInfo(const ir::OperationIndex op_ind, const ir::IOperation *op,
               const OperationLowerInfo *lower_info,
               std::unique_ptr<exec::FunctionSequence> &&fn_seq)
     : op_ind{op_ind}, op{op}, lower_info{lower_info}, fn_seq{std::move(fn_seq)}