diff options
author | David Shah <davey1576@gmail.com> | 2018-06-18 11:43:59 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-06-18 11:43:59 +0200 |
commit | fc7490370b3f81c4b0285fee545142aeb106979b (patch) | |
tree | eb371031babdaefb30f5149da889bf0695d92ca4 /ice40 | |
parent | b728cb71d11c557da25e438d27c58d62c86b5a3d (diff) | |
download | nextpnr-fc7490370b3f81c4b0285fee545142aeb106979b.tar.gz nextpnr-fc7490370b3f81c4b0285fee545142aeb106979b.tar.bz2 nextpnr-fc7490370b3f81c4b0285fee545142aeb106979b.zip |
Improving code style and fixing dummy
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ice40')
-rw-r--r-- | ice40/cells.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ice40/cells.cc b/ice40/cells.cc index b11a2a77..fb264051 100644 --- a/ice40/cells.cc +++ b/ice40/cells.cc @@ -147,7 +147,8 @@ void dff_to_lc(CellInfo *dff, CellInfo *lc, bool pass_thru_lut) if (citer != config.end()) { if ((config.end() - citer) >= 2) { - assert(*(citer++) == 'S'); + char c = *(citer++); + assert(c == 'S'); lc->params["ASYNC_SR"] = "0"; } else { lc->params["ASYNC_SR"] = "1"; |