Skip to content

Commit 30c2bc8

Browse files
committed
[Odin]: - fixing clang non-trival type passing error
- regenerating _BLIF/syntax expectation results Signed-off-by: Seyed Alireza Damghani <[email protected]>
1 parent 84c51c7 commit 30c2bc8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ODIN_II/regression_test/benchmark/task/_BLIF/syntax/simulation_result.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@
857857
"max_rss(MiB)": 7,
858858
"exec_time(ms)": 1.5,
859859
"simulation_time(ms)": 0.4,
860-
"test_coverage(%)": 86.2,
860+
"test_coverage(%)": 77,
861861
"Latch Drivers": 1,
862862
"Pi": 7,
863863
"Po": 3,
@@ -1365,7 +1365,7 @@
13651365
"max_rss(MiB)": 7.2,
13661366
"exec_time(ms)": 1.5,
13671367
"simulation_time(ms)": 0.4,
1368-
"test_coverage(%)": 88.3,
1368+
"test_coverage(%)": 76.4,
13691369
"Latch Drivers": 2,
13701370
"Pi": 8,
13711371
"Po": 4,

libs/libvtrutil/src/vtr_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ char* getline(char*& _lineptr, FILE* _stream) {
413413

414414
/* getline was unsuccessful, so error */
415415
throw VtrError(string_fmt("Error -- %s\n",
416-
error_msg),
416+
error_msg.c_str()),
417417
__FILE__, __LINE__);
418418
return nullptr;
419419
}

0 commit comments

Comments
 (0)