1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

[Hexagon] Skip function in Hexagon vector combine if requested

Add a call to skipFunction().
This commit is contained in:
Krzysztof Parzyszek 2021-04-28 08:57:20 -05:00
parent f3c89eea9d
commit 841431b5d8

View File

@ -1457,6 +1457,8 @@ public:
}
bool runOnFunction(Function &F) override {
if (skipFunction(F))
return false;
AliasAnalysis &AA = getAnalysis<AAResultsWrapperPass>().getAAResults();
AssumptionCache &AC =
getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);