aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-01-25 22:57:09 +0100
committerClifford Wolf <clifford@clifford.at>2015-01-25 22:57:09 +0100
commit13b50bacfee1ea1651cbdccd7522f3d03cab5675 (patch)
tree9189a9a8c89601aa51a4a17e88cd37283427a1a6 /kernel
parentacfaeb8d34f6be33e09f780159a6ec702357697d (diff)
downloadyosys-13b50bacfee1ea1651cbdccd7522f3d03cab5675.tar.gz
yosys-13b50bacfee1ea1651cbdccd7522f3d03cab5675.tar.bz2
yosys-13b50bacfee1ea1651cbdccd7522f3d03cab5675.zip
Rethrow with "catch(...) throw;"
Diffstat (limited to 'kernel')
-rw-r--r--kernel/yosys.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/yosys.cc b/kernel/yosys.cc
index d5467afe1..b280d3344 100644
--- a/kernel/yosys.cc
+++ b/kernel/yosys.cc
@@ -720,9 +720,9 @@ void run_frontend(std::string filename, std::string command, RTLIL::Design *desi
Pass::call(design, command);
}
}
- catch (log_cmd_error_exception) {
+ catch (...) {
Frontend::current_script_file = backup_script_file;
- throw log_cmd_error_exception();
+ throw;
}
Frontend::current_script_file = backup_script_file;