From: Matt Turner Date: Sun, 15 Jun 2014 05:53:40 +0000 (-0700) Subject: i965: Mark backend_instruction and bblock_t as structs. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=836f4299e870a7cff04c2f646a37533d0e68ccd7;p=mesa.git i965: Mark backend_instruction and bblock_t as structs. They have to be marked as structs for C code elsewhere. bblock_t is already defined as a struct, and all of backend_instruction's fields are public anyway. Reviewed-by: Tapani Pälli Reviewed-by: Ian Romanick --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index 885c186bb39..b86a31c3771 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -54,7 +54,7 @@ extern "C" { #define MAX_SAMPLER_MESSAGE_SIZE 11 -class bblock_t; +struct bblock_t; namespace { struct acp_entry; } diff --git a/src/mesa/drivers/dri/i965/brw_shader.h b/src/mesa/drivers/dri/i965/brw_shader.h index cb47cdb46fe..e602bcd2fa4 100644 --- a/src/mesa/drivers/dri/i965/brw_shader.h +++ b/src/mesa/drivers/dri/i965/brw_shader.h @@ -43,7 +43,7 @@ enum PACKED register_file { class cfg_t; -class backend_instruction : public exec_node { +struct backend_instruction : public exec_node { public: bool is_tex() const; bool is_math() const;