From 538e13d4a13419add6bbcb5b14a69762ffad0818 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 24 Feb 2015 17:47:00 -0700 Subject: [PATCH] r300g: remove dependency on compiler.h MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It only needs typical stdio.h and stdlib.h functions. Reviewed-by: Marek Olšák Reviewed-by: Matt Turner Reviewed-by: Jose Fonseca --- src/gallium/drivers/r300/compiler/radeon_compiler.h | 2 -- src/gallium/drivers/r300/compiler/radeon_emulate_loops.c | 3 ++- src/gallium/drivers/r300/compiler/radeon_remove_constants.c | 1 + src/gallium/drivers/r300/compiler/radeon_variable.c | 1 + src/gallium/drivers/r300/r300_tgsi_to_rc.c | 1 + 5 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/r300/compiler/radeon_compiler.h b/src/gallium/drivers/r300/compiler/radeon_compiler.h index e2710d848c5..9dc6855be3c 100644 --- a/src/gallium/drivers/r300/compiler/radeon_compiler.h +++ b/src/gallium/drivers/r300/compiler/radeon_compiler.h @@ -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" diff --git a/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c b/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c index e7b69c875c6..d42b3e793d2 100644 --- a/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c +++ b/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c @@ -29,8 +29,9 @@ * \file */ +#include +#include "c99_math.h" #include "radeon_emulate_loops.h" - #include "radeon_compiler.h" #include "radeon_compiler_util.h" #include "radeon_dataflow.h" diff --git a/src/gallium/drivers/r300/compiler/radeon_remove_constants.c b/src/gallium/drivers/r300/compiler/radeon_remove_constants.c index 7d76585a593..d17f502b23f 100644 --- a/src/gallium/drivers/r300/compiler/radeon_remove_constants.c +++ b/src/gallium/drivers/r300/compiler/radeon_remove_constants.c @@ -25,6 +25,7 @@ * */ +#include #include "radeon_remove_constants.h" #include "radeon_dataflow.h" diff --git a/src/gallium/drivers/r300/compiler/radeon_variable.c b/src/gallium/drivers/r300/compiler/radeon_variable.c index c7ac486f33f..ba895239fb6 100644 --- a/src/gallium/drivers/r300/compiler/radeon_variable.c +++ b/src/gallium/drivers/r300/compiler/radeon_variable.c @@ -25,6 +25,7 @@ * */ +#include #include "radeon_variable.h" #include "memory_pool.h" diff --git a/src/gallium/drivers/r300/r300_tgsi_to_rc.c b/src/gallium/drivers/r300/r300_tgsi_to_rc.c index 4d94941b75d..69afb4caeaa 100644 --- a/src/gallium/drivers/r300/r300_tgsi_to_rc.c +++ b/src/gallium/drivers/r300/r300_tgsi_to_rc.c @@ -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 #include "r300_tgsi_to_rc.h" #include "compiler/radeon_compiler.h" -- 2.30.2