From cbc01f0f7194e1bf5f0f6bf3f38670265b423bf9 Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Thu, 27 Dec 2018 21:39:41 -0800 Subject: [PATCH] Revert "Do not add "$iob" suffix" This reverts commit 10d6db6d94873068809e26c9e3e724683f0339b1. --- xc7/pack.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xc7/pack.cc b/xc7/pack.cc index a4b57f2a..7d4f571e 100644 --- a/xc7/pack.cc +++ b/xc7/pack.cc @@ -256,7 +256,7 @@ static void pack_io(Context *ctx) } } else { // Create a IOBUF buffer - std::unique_ptr xc7_cell = create_xc7_cell(ctx, ctx->id("IOBUF"), ci->name.str(ctx)); + std::unique_ptr xc7_cell = create_xc7_cell(ctx, ctx->id("IOBUF"), ci->name.str(ctx) + "$iob"); nxio_to_sb(ctx, ci, xc7_cell.get()); new_cells.push_back(std::move(xc7_cell)); sb = new_cells.back().get();