We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5646fb6 commit 7d9f5fdCopy full SHA for 7d9f5fd
techlibs/common/sdc_expand.cc
@@ -137,12 +137,13 @@ struct SdcexpandPass : public ScriptPass
137
opensta_pass_call += " -nocleanup";
138
run(opensta_pass_call.c_str());
139
140
- if (cleanup) {
141
- log("Removing temp directory.\n");
142
- remove_directory(tempdir_name);
143
- } else {
144
- log("Keeping temp directory %s\n", tempdir_name.c_str());
145
- }
+ if (!help_mode)
+ if (cleanup) {
+ log("Removing temp directory.\n");
+ remove_directory(tempdir_name);
+ } else {
+ log("Keeping temp directory %s\n", tempdir_name.c_str());
146
+ }
147
run("design -load pre_expand");
148
}
149
} SdcexpandPass;
0 commit comments