Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • opensrc/libehp
1 result
Show changes
Commits on Source (2)
......@@ -17,6 +17,13 @@ stages:
#
# Cleaning
#
do-clean-ubuntu22:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- ubuntu22
do-clean-ubuntu20:
stage: clean
script:
......@@ -62,6 +69,13 @@ do-clean-centos76:
#
# Building
#
do-build-ubuntu22:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- ubuntu22
do-build-ubuntu20:
stage: build
script:
......@@ -108,6 +122,13 @@ do-build-centos76:
#
# Testing
#
do-test-ubuntu22:
stage: test
script:
- ./cicd_testing/do-test.sh
tags:
- ubuntu22
do-test-ubuntu20:
stage: test
script:
......@@ -152,16 +173,6 @@ do-test-centos76:
- centos76
#
# Turbo Fuzzing
#
#do-fuzz-ubuntu18:
#stage: fuzz
#script:
# - ./cicd_testing/do-fuzz.sh
#tags:
#- libehpfuzzpod
#
# Deploy
#
......
......@@ -1668,9 +1668,9 @@ bool lsda_t<ptrsize>::parse_lsda(
if(type_table_encoding!=DW_EH_PE_omit)
{
for(const auto cs_tab_entry : call_site_table)
for(const auto &cs_tab_entry : call_site_table)
{
for(const auto act_tab_entry : cs_tab_entry.getActionTableInternal())
for(const auto &act_tab_entry : cs_tab_entry.getActionTableInternal())
{
const auto type_filter=act_tab_entry.getAction();
const auto parse_and_insert_tt_entry = [&] (const uint64_t index) -> bool
......