Skip to content

Commit 892db83

Browse files
committed
Remove unused BuiltinID parameter
1 parent b04e796 commit 892db83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/AST/ByteCode/InterpBuiltin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2832,7 +2832,7 @@ static bool interp__builtin_select(InterpState &S, CodePtr OpPC,
28322832
}
28332833

28342834
static bool interp__builtin_blend(InterpState &S, CodePtr OpPC,
2835-
const CallExpr *Call, unsigned BuiltinID) {
2835+
const CallExpr *Call) {
28362836
PrimType MaskT = *S.getContext().classify(Call->getArg(2));
28372837
APSInt Mask = popToAPSInt(S.Stk, MaskT);
28382838
const Pointer &TrueVec = S.Stk.pop<Pointer>();
@@ -3538,7 +3538,7 @@ bool InterpretBuiltin(InterpState &S, CodePtr OpPC, const CallExpr *Call,
35383538
case clang::X86::BI__builtin_ia32_pblendw256:
35393539
case clang::X86::BI__builtin_ia32_pblendd128:
35403540
case clang::X86::BI__builtin_ia32_pblendd256:
3541-
return interp__builtin_blend(S, OpPC, Call, BuiltinID);
3541+
return interp__builtin_blend(S, OpPC, Call);
35423542

35433543
case clang::X86::BI__builtin_ia32_blendvpd:
35443544
case clang::X86::BI__builtin_ia32_blendvpd256:

0 commit comments

Comments
 (0)