blob: 2d49577c527af106f3e5c79bf54d2959880da91a [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
#include "Backend.h"
QueuedFullJitWorkItem::QueuedFullJitWorkItem(CodeGenWorkItem *const workItem) : workItem(workItem)
{
Assert(workItem->GetJitMode() == ExecutionMode::FullJit);
}
CodeGenWorkItem *QueuedFullJitWorkItem::WorkItem() const
{
return workItem;
}