Landing: 2e26607f7f14

Project / Subsystem

gcc / testsuite

Date

2026-07-14

Author

Torbjörn SVENSSON

Commit

2e26607f7f14bd32ea8082ee626f207d6a9f87a0

Source

github

Perf win

No

Breaking

No

All attributes

project
gcc
subsystem
testsuite
patch_id
commit_hash
2e26607f7f14bd32ea8082ee626f207d6a9f87a0
source_type
github
headline
Testsuite skips null dereference test on ARM EABI
tldr
A test that checks for null pointer dereferencing is now skipped on ARM EABI targets that allow it.
author
Torbjörn SVENSSON
outcome
committed
performance_win
false
breaking_change
false
series_id
series_parts
[]
tags
  • testsuite
  • arm
discussion_id_link
bugzilla_pr
date
2026-07-14T00:00:00.000Z

The test g++.dg/torture/pr101373.C, which examines behavior related to null pointer dereferencing, has been updated to be skipped on targets like arm-none-eabi. This is because some targets allow memory reads at address 0, which can lead to ambiguous or faulting behavior. The test now uses can_deref_null to determine if it should be executed, ensuring consistent test results across different target configurations.