Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion compiler/code-gen/code-gen-task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// Distributed under the GPL v3 License, see LICENSE.notice.txt

#include "compiler/code-gen/code-gen-task.h"
#include "compiler/code-gen/code-gen-root-cmd.h"

// this os exists to be passed to CodeGenerator constructor,
// but it won't be used actually, as CodeGenerator is not created in "just calc hashes" mode
Expand Down
3 changes: 1 addition & 2 deletions compiler/code-gen/code-gen-task.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@

#pragma once

#include "compiler/code-gen/code-gen-root-cmd.h"
#include "compiler/code-gen/code-generator.h"
#include "compiler/scheduler/task.h"
#include "compiler/stage.h"
#include "compiler/threading/profiler.h"

ProfilerRaw& get_code_gen_profiler();

struct CodeGenRootCmd;

class CodeGenSchedulerTask : public Task {
CodeGenerator W;
DataStream<std::unique_ptr<CodeGenRootCmd>>& os;
Expand Down
Loading