[clang] [clang] VectorExprEvaluator::VisitCallExpr - add constant folding for X86 pslldqi/psrldqi intrinsics (PR #157403)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 1 08:01:52 PDT 2025
================
@@ -2878,6 +2878,35 @@ static bool interp__builtin_x86_insert_subvector(InterpState &S, CodePtr OpPC,
return true;
}
+static bool interp__builtin_byteshift(InterpState &S, CodePtr OpPC,
+ const CallExpr *Call, uint32_t BuiltinID,
+ bool isLeft) {
----------------
kimyounhoex1 wrote:
I was able to do it on my previous PC, but since I switched to a new one, I’ve been having trouble building due to storage limitations, so I couldn’t proceed. Sorry about that.
https://github.com/llvm/llvm-project/pull/157403
More information about the cfe-commits
mailing list