From: Keith Whitwell Date: Thu, 23 Jul 2009 17:48:04 +0000 (+0100) Subject: draw: correct address for machine struct in llvm path X-Git-Tag: mesa-7.8~3951 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aa99a765c15392d06e3a33d4eda377c58bc6afec;p=platform%2Fupstream%2Fmesa.git draw: correct address for machine struct in llvm path This changed after a recent commit. --- diff --git a/src/gallium/auxiliary/draw/draw_vs_llvm.c b/src/gallium/auxiliary/draw/draw_vs_llvm.c index 727977b..b3535c0e 100644 --- a/src/gallium/auxiliary/draw/draw_vs_llvm.c +++ b/src/gallium/auxiliary/draw/draw_vs_llvm.c @@ -119,7 +119,7 @@ draw_create_vs_llvm(struct draw_context *draw, vs->base.create_varient = draw_vs_varient_generic; vs->base.run_linear = vs_llvm_run_linear; vs->base.delete = vs_llvm_delete; - vs->machine = &draw->vs.machine; + vs->machine = draw->vs.machine; { struct gallivm_ir *ir = gallivm_ir_new(GALLIVM_VS);