Skip to content

Commit 1d087cd

Browse files
committed
DRAFT: Support lifting OpFunctionCall to Structured Representation
1 parent 53d8e68 commit 1d087cd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

rspirv/lift/mod.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,11 @@ impl LiftContext {
154154
};
155155
}
156156
}
157+
spirv::Op::FunctionCall => {
158+
let op = context.lift_function_call(inst)?;
159+
dbg!(&op);
160+
// TODO: Add as function call?
161+
}
157162
_ => {
158163
if let Some(id) = inst.result_id {
159164
let op = context.lift_op(inst)?;

0 commit comments

Comments
 (0)