aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorJaydeepChauhan14 <chauhan.jaydeep.ashwinbhai@intel.com>2026-02-10 09:22:35 -0800
committerGitHub <noreply@github.com>2026-02-10 22:52:35 +0530
commit5df173263bb386cccf9de5df5f6fabeb9d247ccc (patch)
tree5b359969330d59037f89a151502f5918252197d6 /llvm/lib/CodeGen
parent076da86cd35aa58759c9be7d23ba4cd8693b7414 (diff)
downloadllvm-5df173263bb386cccf9de5df5f6fabeb9d247ccc.tar.gz
llvm-5df173263bb386cccf9de5df5f6fabeb9d247ccc.tar.bz2
llvm-5df173263bb386cccf9de5df5f6fabeb9d247ccc.zip
[NFC] Initialize AtomicLoadExtActions array (#180752)
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/TargetLoweringBase.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/TargetLoweringBase.cpp b/llvm/lib/CodeGen/TargetLoweringBase.cpp
index c6707162d9b9..5fb5e11e111b 100644
--- a/llvm/lib/CodeGen/TargetLoweringBase.cpp
+++ b/llvm/lib/CodeGen/TargetLoweringBase.cpp
@@ -1015,6 +1015,7 @@ void TargetLoweringBase::initActions() {
// All operations default to being supported.
memset(OpActions, 0, sizeof(OpActions));
memset(LoadExtActions, 0, sizeof(LoadExtActions));
+ memset(AtomicLoadExtActions, 0, sizeof(AtomicLoadExtActions));
memset(TruncStoreActions, 0, sizeof(TruncStoreActions));
memset(IndexedModeActions, 0, sizeof(IndexedModeActions));
memset(CondCodeActions, 0, sizeof(CondCodeActions));