r300g: remove dependency on compiler.h

It only needs typical stdio.h and stdlib.h functions.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
Brian Paul 2015-02-24 17:47:00 -07:00
parent 609cb60d4b
commit 538e13d4a1
5 changed files with 5 additions and 3 deletions

View file

@ -23,8 +23,6 @@
#ifndef RADEON_COMPILER_H
#define RADEON_COMPILER_H
#include "main/compiler.h"
#include "memory_pool.h"
#include "radeon_code.h"
#include "radeon_program.h"

View file

@ -29,8 +29,9 @@
* \file
*/
#include <stdio.h>
#include "c99_math.h"
#include "radeon_emulate_loops.h"
#include "radeon_compiler.h"
#include "radeon_compiler_util.h"
#include "radeon_dataflow.h"

View file

@ -25,6 +25,7 @@
*
*/
#include <stdlib.h>
#include "radeon_remove_constants.h"
#include "radeon_dataflow.h"

View file

@ -25,6 +25,7 @@
*
*/
#include <stdio.h>
#include "radeon_variable.h"
#include "memory_pool.h"

View file

@ -20,6 +20,7 @@
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
* USE OR OTHER DEALINGS IN THE SOFTWARE. */
#include <stdio.h>
#include "r300_tgsi_to_rc.h"
#include "compiler/radeon_compiler.h"