summaryrefslogtreecommitdiff
path: root/gcc/gimple-caster.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gimple-caster.hpp')
-rw-r--r--gcc/gimple-caster.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc/gimple-caster.hpp b/gcc/gimple-caster.hpp
deleted file mode 100644
index 74086606862..00000000000
--- a/gcc/gimple-caster.hpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#include "gimple-escaper.hpp"
-
-/*
- * GimpleCaster is intended to walk gimple
- * and update a map that will hold information
- * on whether a type was casted or not.
- */
-class GimpleCaster : public GimpleEscaper
-{
-public:
- GimpleCaster(ptrset_t &types) : GimpleEscaper(types) {};
-private:
- virtual void _walk_pre(gcall *s) final;
- // Find out which structs are casted.
- // Technically we could find this out on parent
- virtual void _walk_pre(gassign *s) final;
-};