From 9683da905e4384895adedbde7668d6fc958667e0 Mon Sep 17 00:00:00 2001 From: Manadher Kharroubi Date: Fri, 22 Nov 2024 12:19:28 -0800 Subject: [PATCH] For EDA 3310 (#1718) * For EDA 3310 * Incremented patch version --------- Co-authored-by: manadher --- CMakeLists.txt | 2 +- src/Compiler/Compiler.cpp | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fa14f45a6..39e2ebfb0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,7 @@ set(VERSION_MINOR 0) # Add the spdlog directory to the include path include_directories(${CMAKE_CURRENT_SOURCE_DIR}/third_party/spdlog/include ${CMAKE_CURRENT_SOURCE_DIR}/third_party/exprtk ${CMAKE_CURRENT_SOURCE_DIR}/third_party/scope_guard) -set(VERSION_PATCH 438) +set(VERSION_PATCH 439) option( diff --git a/src/Compiler/Compiler.cpp b/src/Compiler/Compiler.cpp index 9b812fe5a..807458e28 100644 --- a/src/Compiler/Compiler.cpp +++ b/src/Compiler/Compiler.cpp @@ -940,8 +940,20 @@ bool Compiler::RegisterCommands(TclInterpreter* interp, bool batchMode) { return TCL_ERROR; } std::string opts; + bool read_init_registers = false; for (int i = 1; i < argc; i++) { - opts += std::string(argv[i]); + std::string opt = argv[i]; + if (opt == "-read_init_registers") { + read_init_registers = true; + } + if (read_init_registers) { + if (opt != "2" && opt != "1" && opt != "0") { + compiler->ErrorMessage("read_init_registers must be 0, 1, or 2"); + return TCL_ERROR; + } + read_init_registers = false; + } + opts += opt; if (i < (argc - 1)) { opts += " "; }