summaryrefslogtreecommitdiffhomepage
path: root/asm/encode.h
blob: d9e5674e159cca33dfe882ac1e8aa2b40b69bca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Convert: Abstract FlowGraph to Machine dependent Code

#pragma once

#include "flowgraph/graph.h"
#include "segment.h"

namespace Asm {

// in: graph
// out: segment
void toMachineCode(const FlowGraph::Graph& graph, Segment& segment);

} // namespace Asm