From: Dave Airlie Date: Fri, 20 Mar 2015 06:26:59 +0000 (+1000) Subject: mesa: reorder prog_instruction X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e17b0435c54bf14d9d1c9a9815814eb11fc66636;p=mesa.git mesa: reorder prog_instruction reduces size from 64 to 56 bytes. Acked-by: Brian Paul Reviewed-by: Alex Deucher alexander.deucher@amd.com> Signed-off-by: Dave Airlie --- diff --git a/src/mesa/program/prog_instruction.h b/src/mesa/program/prog_instruction.h index 0957bd9d779..ab3acbc02dd 100644 --- a/src/mesa/program/prog_instruction.h +++ b/src/mesa/program/prog_instruction.h @@ -366,11 +366,11 @@ struct prog_instruction */ GLint BranchTarget; - /** for debugging purposes */ - const char *Comment; - /** for driver use (try to remove someday) */ GLint Aux; + + /** for debugging purposes */ + const char *Comment; };