This is an archive of the discontinued LLVM Phabricator instance.

[Matrix] Fix test on SystemZ
AbandonedPublic

Authored by kuhar on Sep 5 2023, 11:33 AM.

Details

Reviewers
None
Summary

As reported by @uweigand in https://reviews.llvm.org/D158883:

The newly added test cases in ffp-model.c fail on SystemZ, making CI red:
https://lab.llvm.org/buildbot/#/builders/94/builds/16280

The root cause seems to be that by default, the SystemZ back-end targets
a machine without SIMD support, and therefore vector return types are
passed via implicit reference according to the ABI

this uses manual stores instead of vector returns.

Diff Detail

Event Timeline

kuhar created this revision.Sep 5 2023, 11:33 AM
Herald added a project: Restricted Project. · View Herald TranscriptSep 5 2023, 11:33 AM
kuhar requested review of this revision.Sep 5 2023, 11:33 AM
Herald added a project: Restricted Project. · View Herald TranscriptSep 5 2023, 11:33 AM
Herald added a subscriber: cfe-commits. · View Herald Transcript
kuhar abandoned this revision.Sep 5 2023, 11:34 AM

Gah, disregard