Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions rspirv/lift/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ impl LiftContext {
};
}
}
spirv::Op::FunctionCall => {
let op = context.lift_function_call(inst)?;
dbg!(&op);
// TODO: Add as function call?
}
_ => {
if let Some(id) = inst.result_id {
let op = context.lift_op(inst)?;
Expand Down
Loading