Skip to content

Commit 04c2638

Browse files
committed
removing function that was duplicated after merging ToT
1 parent 469d6c3 commit 04c2638

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

source/slang/slang-ir.cpp

-11
Original file line numberDiff line numberDiff line change
@@ -3656,17 +3656,6 @@ IRInst* IRBuilder::emitBitfieldInsert(IRType* type, IRInst* base, IRInst* insert
36563656
return inst;
36573657
}
36583658

3659-
IRInst* IRBuilder::emitPackAnyValue(IRType* type, IRInst* value)
3660-
{
3661-
auto inst = createInst<IRPackAnyValue>(
3662-
this,
3663-
kIROp_PackAnyValue,
3664-
type,
3665-
value);
3666-
addInst(inst);
3667-
return inst;
3668-
}
3669-
36703659
IRInst* IRBuilder::emitAlloca(IRInst* type, IRInst* rttiObjPtr)
36713660
{
36723661
auto inst = createInst<IRAlloca>(this, kIROp_Alloca, (IRType*)type, rttiObjPtr);

0 commit comments

Comments
 (0)