1 /* 2 * Copyright © 2020 Google, Inc. 3 * SPDX-License-Identifier: MIT 4 */ 5 6 #ifndef _ISA_H_ 7 #define _ISA_H_ 8 9 #include "compiler/isaspec/isaspec.h" 10 11 struct ir3_shader_variant; 12 void * isa_assemble(struct ir3_shader_variant *v); 13 14 #endif /* _ISA_H_ */ 15