Landing: c99177366bf6

Project / Subsystem

gcc / aarch64

Date

2026-05-19

Author

Pengxuan Zheng

Commit

c99177366bf66ebf9eb9bc27ca634c5e11b81f7f

Source

github

Perf win

No

Breaking

No

All attributes

project
gcc
subsystem
aarch64
patch_id
commit_hash
c99177366bf66ebf9eb9bc27ca634c5e11b81f7f
source_type
github
headline
AArch64: Testsuite: Update pr123748.c to use "long long" instead of "long"
tldr
Updates a test case to use "long long" instead of "long" to ensure correct behavior on MinGW AArch64.
author
Pengxuan Zheng
outcome
committed
performance_win
false
breaking_change
false
series_id
series_parts
[]
tags
  • aarch64
  • testsuite
  • mingw
  • data type
discussion_id_link
bugzilla_pr
date
2026-05-19T00:00:00.000Z

The test case pr123748.c was using the long type, which is 32-bits on MinGW AArch64. This commit updates the test case to use long long instead, which is guaranteed to be 64-bits, ensuring the test case functions correctly on MinGW AArch64. This avoids potential issues caused by the difference in long type size across different platforms.