Jlm
ssa.hpp
Go to the documentation of this file.
1 /*
2  * Copyright 2017 Nico Reißmann <nico.reissmann@gmail.com>
3  * See COPYING for terms of redistribution.
4  */
5 
6 #ifndef JLM_LLVM_IR_SSA_HPP
7 #define JLM_LLVM_IR_SSA_HPP
8 
9 namespace jlm::llvm
10 {
11 
12 class ControlFlowGraph;
13 
14 void
15 destruct_ssa(ControlFlowGraph & cfg);
16 
17 }
18 
19 #endif
Global memory state passed between functions.
void destruct_ssa(ControlFlowGraph &cfg)
Definition: ssa.cpp:18