summaryrefslogtreecommitdiff
path: root/gcc/gimple-walker.hpp
diff options
context:
space:
mode:
authorErick Ochoa <erick.ochoa@theobroma-systems.com>2020-06-08 15:09:24 +0200
committerErick Ochoa <erick.ochoa@theobroma-systems.com>2020-06-08 15:09:24 +0200
commit140efef10e83422f31b8773dd0ffbf72d2fb0741 (patch)
tree37b81694b561c6959b354f915245320fca6d080f /gcc/gimple-walker.hpp
parent095fb75003c2ba67f9b1088dde507ab5bc0d41a9 (diff)
Adds ability to find casting between types
Diffstat (limited to 'gcc/gimple-walker.hpp')
-rw-r--r--gcc/gimple-walker.hpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/gcc/gimple-walker.hpp b/gcc/gimple-walker.hpp
index 219eb7b00b2..cc1ece64f05 100644
--- a/gcc/gimple-walker.hpp
+++ b/gcc/gimple-walker.hpp
@@ -1,5 +1,35 @@
#pragma once
+#include "config.h"
+#include "system.h"
+#include "coretypes.h"
+#include "backend.h"
+#include "tree.h"
+#include "gimple-expr.h"
+#include "predict.h"
+#include "alloc-pool.h"
+#include "tree-pass.h"
+#include "cgraph.h"
+#include "diagnostic.h"
+#include "fold-const.h"
+#include "gimple-fold.h"
+#include "symbol-summary.h"
+#include "tree-vrp.h"
+#include "ipa-prop.h"
+#include "tree-pretty-print.h"
+#include "tree-inline.h"
+#include "ipa-fnsummary.h"
+#include "ipa-utils.h"
+#include "tree-ssa-ccp.h"
+#include "stringpool.h"
+#include "attribs.h"
+#include "tree-ssa-alias.h"
+#include "tree-ssanames.h"
+#include "gimple.h"
+#include "cfg.h"
+#include "gimple-iterator.h"
+#include "gimple-ssa.h"
+
class GimpleWalker
{
public: