From fae666c586ca85bbdbd02db102b4dc93f1633ed3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=84=B8=ED=9D=AC/On-Device=20Lab=28SR=29/Princip?= =?utf8?q?al=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Thu, 10 Jan 2019 13:07:23 +0900 Subject: [PATCH] [enco] fix typo in comment (#2801) This will fix typo in reduce_identical_object comment Signed-off-by: SaeHie Park --- contrib/enco/core/src/Transforms/IdenticalObjectReduction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/enco/core/src/Transforms/IdenticalObjectReduction.cpp b/contrib/enco/core/src/Transforms/IdenticalObjectReduction.cpp index 81751b9..cb996d2 100644 --- a/contrib/enco/core/src/Transforms/IdenticalObjectReduction.cpp +++ b/contrib/enco/core/src/Transforms/IdenticalObjectReduction.cpp @@ -31,7 +31,7 @@ void reduce_identical_object(enco::Code *code) // Preceding optimizations may generate "free" instructions. // - i.e. an instruction not linked to a block // - // Let's iterates over only a sequence of "bounded" instructions. + // Let's iterate over only a sequence of "bounded" instructions. for (auto ins : instr_sequence(m)) { assert(ins != nullptr); -- 2.7.4