about summary refs log tree commit diff
path: root/tests/assembly/cstring-merging.rs
AgeCommit message (Collapse)AuthorLines
2025-07-22Rename `tests/assembly` into `tests/assembly-llvm`Guillaume Gomez-30/+0
2025-07-18tests: assembly: cstring-merging: Disable GlobalMerge passJens Reidel-1/+1
The test relies on LLVM not merging all the globals into one and would currently otherwise fail on powerpc64le. Signed-off-by: Jens Reidel <adrian@travitia.xyz>
2025-04-17Make C string merging test work on MIPSLukas Woodtli-3/+5
Assembly for MIPS uses, by convention, a different prefix for local anonymous variables.
2025-04-14Let CStrings be either 1 or 2 byte aligned.Eddy (Eduard) Stefes-1/+1
Some architectures (like s390x) require strings to be 2 byte aligned. Therefor the section name will be marked with a .2 postfix on this architectures. Allowing a section name with a .1 or .2 postfix will make the test pass on either platform.
2025-04-10replace `//@ compile-flags: --edition` with `//@ edition`Pietro Albini-1/+2
2025-03-28Add test and commentbjorn3-0/+27