summaryrefslogtreecommitdiffhomepage
path: root/asm/intel64/encode.h
blob: 7fd23d6c2a74962b099e77654fefa7a0b9856aea (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 "asm/segment.h"
#include "flowgraph/graph.h"

namespace Asm {

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

} // namespace Asm