From: Martin Liska Date: Tue, 4 Feb 2020 13:57:59 +0000 (+0100) Subject: Put index check before use. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=98f7381d17a1ad47773b70a5de7d94a164357916;p=gcc.git Put index check before use. liboffloadmic/ChangeLog: 2020-02-04 Martin Liska PR other/89860 * runtime/offload_target.cpp: Put index check before its use. --- diff --git a/liboffloadmic/runtime/offload_target.cpp b/liboffloadmic/runtime/offload_target.cpp index 8273faac13b..16ba4a32991 100644 --- a/liboffloadmic/runtime/offload_target.cpp +++ b/liboffloadmic/runtime/offload_target.cpp @@ -329,7 +329,7 @@ void OffloadDescriptor::merge_var_descs( } } // instead of m_vars[i].type.dst we will use m_vars_extra[i].type_dst - if (m_vars[i].type.dst == c_extended_type && i < vars_total) { + if (i < vars_total && m_vars[i].type.dst == c_extended_type) { VarDescExtendedType *etype = reinterpret_cast(vars[i].into); m_vars_extra[i].type_dst = etype->extended_type;