From 6f8dfbe0084d33b904d8f8b80d21ea7b4440635c Mon Sep 17 00:00:00 2001 From: akashk4 <akashk4@illinois.edu> Date: Tue, 21 Jan 2020 18:52:14 -0600 Subject: [PATCH] Fix a typo in GenVISC.cpp --- hpvm/lib/Transforms/GenVISC/GenVISC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hpvm/lib/Transforms/GenVISC/GenVISC.cpp b/hpvm/lib/Transforms/GenVISC/GenVISC.cpp index b0aaacaed3..278965bf59 100644 --- a/hpvm/lib/Transforms/GenVISC/GenVISC.cpp +++ b/hpvm/lib/Transforms/GenVISC/GenVISC.cpp @@ -274,7 +274,7 @@ bool GenVISC::runOnModule(Module &M) { parseIRFile(runtimeAPI.str(), Err, M.getContext()); if (runtimeModule == NULL) - DEBUG(errs() << Err.getMessage() << " " << rutimeAPI << "\n"); + DEBUG(errs() << Err.getMessage() << " " << runtimeAPI << "\n"); else DEBUG(errs() << "Successfully loaded visc-rt API module\n"); -- GitLab