1 /* -*- mesa-c++ -*- 2 * Copyright 2022 Collabora LTD 3 * Author: Gert Wollny <[email protected]> 4 * SPDX-License-Identifier: MIT 5 */ 6 7 #ifndef PEEPHOLE_H 8 #define PEEPHOLE_H 9 10 #include "sfn_shader.h" 11 12 namespace r600 { 13 14 bool 15 peephole(Shader& sh); 16 17 } 18 19 #endif // PEEPHOLE_H 20