aboutsummaryrefslogtreecommitdiff
path: root/src/check_builtin.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-05-25 21:00:00 +0100
committergingerBill <bill@gingerbill.org>2022-05-25 21:00:00 +0100
commitb168bf9460491a101f3a7d41c28500a45898ecbf (patch)
treed15ca713dfc1fa323cc42796eb9282aec9eb8a6e /src/check_builtin.cpp
parent0203bb657ed09046dddc958be5322b1cd8c0a589 (diff)
Rename `simd_insert` to `simd_replace`
Diffstat (limited to 'src/check_builtin.cpp')
-rw-r--r--src/check_builtin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_builtin.cpp b/src/check_builtin.cpp
index ab4cc210c..64b2ebfce 100644
--- a/src/check_builtin.cpp
+++ b/src/check_builtin.cpp
@@ -651,7 +651,7 @@ bool check_builtin_simd_operation(CheckerContext *c, Operand *operand, Ast *call
return true;
}
break;
- case BuiltinProc_simd_insert:
+ case BuiltinProc_simd_replace:
{
Operand x = {};
check_expr(c, &x, ce->args[0]); if (x.mode == Addressing_Invalid) { return false; }