diff options
author | Keith Whitwell <[email protected]> | 2009-07-23 18:48:04 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-07-23 18:48:04 +0100 |
commit | aa99a765c15392d06e3a33d4eda377c58bc6afec (patch) | |
tree | 0dd5a821f5a7cd8b9b56b7e2c7ce55a62e060844 | |
parent | adc6f8cdfc8ca25d7480a50cfe0f85fdeddbfcfc (diff) |
draw: correct address for machine struct in llvm path
This changed after a recent commit.
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs_llvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_llvm.c b/src/gallium/auxiliary/draw/draw_vs_llvm.c index 727977bc3af..b3535c0e48e 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); |