[PATCH] D125870: [Polly] Migrate -polly-mse to the new pass manager.
Michael Kruse via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 1 11:47:36 PDT 2022
Meinersbur added a comment.
There were two compiler warnings I fixed before committing:
In file included from /home/meinersbur/src/llvm-project/polly/lib/Transform/MaximalStaticExpansion.cpp:14:
/home/meinersbur/src/llvm-project/polly/include/polly/MaximalStaticExpansion.h:14:9: warning: 'POLLY_MAXIMALSTATICEXPANSION_H' is used as a header guard here, followed by #define of a different macro [-Wheader-guard]
#ifndef POLLY_MAXIMALSTATICEXPANSION_H
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/meinersbur/src/llvm-project/polly/include/polly/MaximalStaticExpansion.h:15:9: note: 'POLLY_MAXIMALSTATICEXPANSIO_H' is defined here; did you mean 'POLLY_MAXIMALSTATICEXPANSION_H'?
#define POLLY_MAXIMALSTATICEXPANSIO_H
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
POLLY_MAXIMALSTATICEXPANSION_H
/home/meinersbur/src/llvm-project/polly/lib/Transform/MaximalStaticExpansion.cpp:414:15: warning: field 'Dependences' will be initialized after field 'ORE' [-Wreorder-ctor]
: S(S), Dependences(Dependences), ORE(ORE) {}
~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~
ORE(ORE) S(S) Dependences(Dependences)
2 warnings generated.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125870/new/
https://reviews.llvm.org/D125870
More information about the llvm-commits
mailing list