diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2023-09-04 18:16:54 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-04 18:16:54 -0400 |
| commit | d9c5096e929ef28a59ac4064c4daef734e1d17c0 (patch) | |
| tree | b228c110eb5a406c971eece7c0707ab365521c15 /tools/gcc-plugins/gcc-common.h | |
| parent | ff542b22d219107bede01c74b426ddda87c7a31d (diff) | |
| parent | 2821d3b91b5145a848eee00d7134c12b45be10f6 (diff) | |
Merge pull request #14346 from opensourcerouting/frr-format-gcc-13
tools/gcc-plugins: fix for GCC 13
Diffstat (limited to 'tools/gcc-plugins/gcc-common.h')
| -rw-r--r-- | tools/gcc-plugins/gcc-common.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/gcc-plugins/gcc-common.h b/tools/gcc-plugins/gcc-common.h index 9f59447d63..6eaea9bf74 100644 --- a/tools/gcc-plugins/gcc-common.h +++ b/tools/gcc-plugins/gcc-common.h @@ -111,6 +111,10 @@ #include "varasm.h" #include "stor-layout.h" #include "internal-fn.h" +#if BUILDING_GCC_VERSION >= 13000 +#include "gimple.h" +#include "gimple-iterator.h" +#endif #include "gimple-expr.h" #include "gimple-fold.h" #include "context.h" |
