summaryrefslogtreecommitdiff
path: root/passes/fsm/fsm_expand.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-10-11 11:42:08 +0200
committerClifford Wolf <clifford@clifford.at>2014-10-11 11:42:08 +0200
commit35fbc0b35fb2dafa1b7d1df98ed72688e2eeead6 (patch)
treebbeb61f87150444f2587225518eaa82c8704eef0 /passes/fsm/fsm_expand.cc
parent8263f6a74a822579f3c1da7d8b128ea8ab7b4d79 (diff)
Do not the 'z' modifier in format string (another win32 fix)
Diffstat (limited to 'passes/fsm/fsm_expand.cc')
-rw-r--r--passes/fsm/fsm_expand.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/fsm/fsm_expand.cc b/passes/fsm/fsm_expand.cc
index ecd4bf76..a261eb22 100644
--- a/passes/fsm/fsm_expand.cc
+++ b/passes/fsm/fsm_expand.cc
@@ -239,7 +239,7 @@ struct FsmExpand
if (merged_set.size() > 0 && !already_optimized)
FsmData::optimize_fsm(fsm_cell, module);
- log(" merged %zd cells into FSM.\n", merged_set.size());
+ log(" merged %d cells into FSM.\n", GetSize(merged_set));
}
};