[PATCH] D109131: [GlobalISel] Add a store-merging optimization pass and enable for AArch64.

Mikael Holmén via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 15 23:22:50 PST 2021


uabelho added inline comments.


================
Comment at: llvm/lib/CodeGen/GlobalISel/LoadStoreOpt.cpp:39
+#include <algorithm>
+#include <any>
+
----------------
I noticed that this buildbot failed on this include:
https://lab.llvm.org/buildbot/#/builders/110/builds/7989

We see similar problems downstream in our own private bots:
```
06:37:16 ../lib/CodeGen/GlobalISel/LoadStoreOpt.cpp:39:10: fatal error: 'any' file not found
06:37:16 #include <any>
06:37:16          ^~~~~
06:37:16 1 error generated.
```
We get that when compiling with clang 8.0


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D109131/new/

https://reviews.llvm.org/D109131



More information about the llvm-commits mailing list