summaryrefslogtreecommitdiffstats
path: root/src/compiler/spirv
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2019-03-19 10:18:49 -0500
committerJason Ekstrand <[email protected]>2019-03-19 10:19:42 -0500
commitcbfe31ccbe3eafcb5aeb74457e3b67641fd54ae1 (patch)
treebacad16b799d2ec4dce2afd78117366463520f06 /src/compiler/spirv
parent43b6dd05f746f3c946bc6d259c69fad744989c89 (diff)
Revert "nir: const `nir_call_instr::callee`"
This reverts commit db57db5317e81fb4ce31bc294fdcc199db651542. When building IR, nothing is really immutable and, since C has no concept of constness propagating beyond the first pointer, we have to be vary careful with how we use it. To just throw const into a function like this is a lie. Instead, we should just drop the unneeded const in spirv_to_nir which this commit does along with the revert.
Diffstat (limited to 'src/compiler/spirv')
-rw-r--r--src/compiler/spirv/spirv_to_nir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/spirv/spirv_to_nir.c b/src/compiler/spirv/spirv_to_nir.c
index 0ef8d67519a..6d6aed287ac 100644
--- a/src/compiler/spirv/spirv_to_nir.c
+++ b/src/compiler/spirv/spirv_to_nir.c
@@ -4492,7 +4492,7 @@ vtn_create_builder(const uint32_t *words, size_t word_count,
static nir_function *
vtn_emit_kernel_entry_point_wrapper(struct vtn_builder *b,
- const nir_function *entry_point)
+ nir_function *entry_point)
{
vtn_assert(entry_point == b->entry_point->func->impl->function);
vtn_fail_if(!entry_point->name, "entry points are required to have a name");