r600/compute: Use the correct FREE macro when deleting compute state

Reviewed-by: Tom Stellard <thomas.stellard@amd.com>

CC: "10.0" <mesa-stable@lists.freedesktop.org>
(cherry picked from commit 0bd858d7ff)
This commit is contained in:
Aaron Watry 2013-11-08 13:53:10 -06:00 committed by Carl Worth
parent 2a20bf3ed2
commit 23d290d102

View file

@ -246,7 +246,7 @@ void evergreen_delete_compute_state(struct pipe_context *ctx, void* state)
}
#endif
free(shader);
FREE(shader);
}
static void evergreen_bind_compute_state(struct pipe_context *ctx_, void *state)