From c2e08c3cc6de1967cb876f855b27e68d996d98a8 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: Wed, 16 Jan 2019 15:53:55 +0900 Subject: [PATCH] [enco] Fix comment for duplicate_inout_bag (#2864) This will fix a typo and explanation of the function Signed-off-by: SaeHie Park --- contrib/enco/core/src/Backend.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/enco/core/src/Backend.cpp b/contrib/enco/core/src/Backend.cpp index 8cf2306..f5a07e8 100644 --- a/contrib/enco/core/src/Backend.cpp +++ b/contrib/enco/core/src/Backend.cpp @@ -93,10 +93,10 @@ void BackendImpl::compile(coco::Module *m, coco::Data *d) // validate if IR from frontend is correct assert(validate(code(sess))); - // As explained below, the current implementation does not work if there is a pair of input/ouput + // As explained below, the current implementation does not work if there is a pair of input/output // that share the same bag as their underlying bag. // - // This DuplicatePass creates a copy of such bags in order to eliminate such a pair. + // 'duplicate_inout_bag()' creates a copy of such bags in order to eliminate such a pair. duplicate_inout_bag(code(sess)); // The current implementation will assign memory region for each bag as follows: -- 2.7.4