1#ifndef SFN_OPTIMIZERS_H
2#define SFN_OPTIMIZERS_H
3
4#include "sfn_instruction_base.h"
5
6namespace r600 {
7
8std::vector<PInstruction>
9flatten_alu_ops(const std::vector<InstructionBlock> &ir);
10
11
12}
13
14#endif // SFN_OPTIMIZERS_H
15