Apply 'make format'
This commit is contained in:
parent
0d6a68f79e
commit
b955d0e92e
|
|
@ -297,12 +297,13 @@ void vl_load_vpi_libs(int argc, char** argv) VL_MT_UNSAFE {
|
||||||
(std::string{"Cannot load VPI library: "} + libpath + "\n- dlerror: " + dlerror())
|
(std::string{"Cannot load VPI library: "} + libpath + "\n- dlerror: " + dlerror())
|
||||||
.c_str());
|
.c_str());
|
||||||
if (has_entry) {
|
if (has_entry) {
|
||||||
vlog_startup_t bsp = reinterpret_cast<vlog_startup_t>(dlsym(handle, entry_name.c_str()));
|
vlog_startup_t bsp
|
||||||
|
= reinterpret_cast<vlog_startup_t>(dlsym(handle, entry_name.c_str()));
|
||||||
if (!bsp)
|
if (!bsp)
|
||||||
VL_FATAL_MT("", 0, "",
|
VL_FATAL_MT(
|
||||||
(std::string{"Cannot find VPI bootstrap '"} + entry_name
|
"", 0, "",
|
||||||
+ "' in: " + libpath)
|
(std::string{"Cannot find VPI bootstrap '"} + entry_name + "' in: " + libpath)
|
||||||
.c_str());
|
.c_str());
|
||||||
bsp();
|
bsp();
|
||||||
} else {
|
} else {
|
||||||
vlog_startup_t* routinesp
|
vlog_startup_t* routinesp
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue