From: Timothy Arceri Date: Thu, 1 Feb 2018 21:50:09 +0000 (+1100) Subject: gallium: remove llvm from ir struct X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7e46214f871983dc64730f2f9c5029ee6109c3b4;p=mesa.git gallium: remove llvm from ir struct This was added in 425dc4c4b366 but never used. Also since 100796c15c3a native has superseded llvm. Acked-by: Dave Airlie --- diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 2b56d60b5ed..640e6ed26dc 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -267,7 +267,6 @@ struct pipe_shader_state /* TODO move tokens into union. */ const struct tgsi_token *tokens; union { - void *llvm; void *native; void *nir; } ir;