diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-12-30 22:35:38 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-12-30 22:35:38 +0100 |
commit | 11c3b81c08e7227275744fe08a1a91295ec23781 (patch) | |
tree | a6bccdcfc3e99a6379a6ffc484eca4ccbc4bc1c3 | |
parent | 50fff2b24061208a4b7c0ff9a4839e1938c66140 (diff) | |
download | yosys-11c3b81c08e7227275744fe08a1a91295ec23781.tar.gz yosys-11c3b81c08e7227275744fe08a1a91295ec23781.tar.bz2 yosys-11c3b81c08e7227275744fe08a1a91295ec23781.zip |
typo fix for "opt -fast"
-rw-r--r-- | passes/opt/opt.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/opt/opt.cc b/passes/opt/opt.cc index 83a30ad77..25419375e 100644 --- a/passes/opt/opt.cc +++ b/passes/opt/opt.cc @@ -145,7 +145,7 @@ struct OptPass : public Pass { } } - log_header(fast_mode ? "Finished fast OPT passes." : "Finished OPT passes. (There is nothing left to do.)\n"); + log_header(fast_mode ? "Finished fast OPT passes.\n" : "Finished OPT passes. (There is nothing left to do.)\n"); log_pop(); } } OptPass; |