Skip to content
Snippets Groups Projects
Commit 592125ef authored by Adel Ejjeh's avatar Adel Ejjeh
Browse files

Update GenVISC.cpp error message when visc-rt cannot be found.

parent da110bdd
No related branches found
No related tags found
No related merge requests found
...@@ -274,7 +274,7 @@ bool GenVISC::runOnModule(Module &M) { ...@@ -274,7 +274,7 @@ bool GenVISC::runOnModule(Module &M) {
parseIRFile(runtimeAPI.str(), Err, M.getContext()); parseIRFile(runtimeAPI.str(), Err, M.getContext());
if (runtimeModule == NULL) if (runtimeModule == NULL)
DEBUG(errs() << Err.getMessage()); DEBUG(errs() << Err.getMessage() << " " << rutimeAPI << "\n");
else else
DEBUG(errs() << "Successfully loaded visc-rt API module\n"); DEBUG(errs() << "Successfully loaded visc-rt API module\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment