Skip to content

Commit

Permalink
removing function that was duplicated after merging ToT
Browse files Browse the repository at this point in the history
  • Loading branch information
natevm committed Dec 8, 2024
1 parent 469d6c3 commit 04c2638
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions source/slang/slang-ir.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3656,17 +3656,6 @@ IRInst* IRBuilder::emitBitfieldInsert(IRType* type, IRInst* base, IRInst* insert
return inst;
}

IRInst* IRBuilder::emitPackAnyValue(IRType* type, IRInst* value)
{
auto inst = createInst<IRPackAnyValue>(
this,
kIROp_PackAnyValue,
type,
value);
addInst(inst);
return inst;
}

IRInst* IRBuilder::emitAlloca(IRInst* type, IRInst* rttiObjPtr)
{
auto inst = createInst<IRAlloca>(this, kIROp_Alloca, (IRType*)type, rttiObjPtr);
Expand Down

0 comments on commit 04c2638

Please sign in to comment.