aboutsummaryrefslogtreecommitdiff
path: root/src/check_builtin.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-05-27 22:57:16 +0100
committergingerBill <bill@gingerbill.org>2022-05-27 22:57:16 +0100
commit8518d3b2327885538993afa2655b83abb71b82e3 (patch)
tree9da427a34350c0f7527629e853e20549eeab65b6 /src/check_builtin.cpp
parent1c1f5e2231dc8e1ec992ec7399407f78c98dc283 (diff)
Rename to `non_temporaral_*`
Diffstat (limited to 'src/check_builtin.cpp')
-rw-r--r--src/check_builtin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/check_builtin.cpp b/src/check_builtin.cpp
index ad227489b..9fa9cc590 100644
--- a/src/check_builtin.cpp
+++ b/src/check_builtin.cpp
@@ -4021,7 +4021,7 @@ bool check_builtin_procedure(CheckerContext *c, Operand *operand, Ast *call, i32
case BuiltinProc_volatile_store:
case BuiltinProc_unaligned_store:
- case BuiltinProc_nontemporal_store:
+ case BuiltinProc_non_temporal_store:
case BuiltinProc_atomic_store:
{
Type *elem = nullptr;
@@ -4069,7 +4069,7 @@ bool check_builtin_procedure(CheckerContext *c, Operand *operand, Ast *call, i32
case BuiltinProc_volatile_load:
case BuiltinProc_unaligned_load:
- case BuiltinProc_nontemporal_load:
+ case BuiltinProc_non_temporal_load:
case BuiltinProc_atomic_load:
{
Type *elem = nullptr;