1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[opt][NPM] Pin -lower-amx-type to legacy PM

This is part of the codegen pipeline.
This commit is contained in:
Arthur Eubanks 2020-12-13 19:13:48 -08:00
parent 74ef815f29
commit 26e5c18037

View File

@ -486,7 +486,8 @@ static bool shouldPinPassToLegacyPM(StringRef Pass) {
"indirectbr-expand",
"generic-to-nvvm",
"expandmemcmp",
"loop-reduce"};
"loop-reduce",
"lower-amx-type"};
for (const auto &P : PassNamePrefix)
if (Pass.startswith(P))
return true;