From 532cee06dae83542cc42b33f2104672e30f68498 Mon Sep 17 00:00:00 2001 From: Aaron Date: Wed, 7 Feb 2024 20:01:55 -0600 Subject: [PATCH] Adding semicolon --- core/Dispatch.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/Dispatch.cpp b/core/Dispatch.cpp index f95b42f9..18fec2b7 100644 --- a/core/Dispatch.cpp +++ b/core/Dispatch.cpp @@ -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;