summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_bld_flow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_bld_flow.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_bld_flow.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_flow.h b/src/gallium/drivers/llvmpipe/lp_bld_flow.h
index 1f294b8a49..7c7cc402a3 100644
--- a/src/gallium/drivers/llvmpipe/lp_bld_flow.h
+++ b/src/gallium/drivers/llvmpipe/lp_bld_flow.h
@@ -132,7 +132,7 @@ struct lp_build_if_state
LLVMBuilderRef builder;
struct lp_build_flow_context *flow;
LLVMValueRef condition;
- LLVMBasicBlockRef entry_block, true_block, false_block;
+ LLVMBasicBlockRef entry_block, true_block, false_block, merge_block;
};
@@ -143,9 +143,6 @@ lp_build_if(struct lp_build_if_state *ctx,
LLVMValueRef condition);
void
-lp_build_if_phi_var(struct lp_build_if_state *ctx, LLVMValueRef var);
-
-void
lp_build_else(struct lp_build_if_state *ctx);
void