Skip to content

Commit

Permalink
Adding semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongchan committed Feb 8, 2024
1 parent f4cb1bb commit 532cee0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/Dispatch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,10 @@ namespace olympia
"Pipe Target: "
<< target_pipe
<< " doesn't have any execution unit that can handle that target "
"pipe. Did you define it in the yaml properly?")
// so we have a map here that checks for which valid dispatchers for that
// instruction target pipe map needs to be: "int": [exe0, exe1, exe2]
if (target_pipe != InstArchInfo::TargetPipe::LSU)
"pipe. Did you define it in the yaml properly?");
// so we have a map here that checks for which valid dispatchers for that
// instruction target pipe map needs to be: "int": [exe0, exe1, exe2]
if (target_pipe != InstArchInfo::TargetPipe::LSU)
{
uint32_t max_credits = 0;
olympia::Dispatcher* best_dispatcher = nullptr;
Expand Down

0 comments on commit 532cee0

Please sign in to comment.