From 9790cea186c8ac6c3b22989f7717c06cc69a206a Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Thu, 27 Dec 2018 21:43:10 -0800 Subject: [PATCH] Revert "Revert "Do not add "$iob" suffix"" This reverts commit cbc01f0f7194e1bf5f0f6bf3f38670265b423bf9. --- xc7/pack.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xc7/pack.cc b/xc7/pack.cc index 7d4f571e..a4b57f2a 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) + "$iob"); + std::unique_ptr xc7_cell = create_xc7_cell(ctx, ctx->id("IOBUF"), ci->name.str(ctx)); nxio_to_sb(ctx, ci, xc7_cell.get()); new_cells.push_back(std::move(xc7_cell)); sb = new_cells.back().get();