summaryrefslogtreecommitdiff
path: root/gcc/gimple.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gimple.h')
-rw-r--r--gcc/gimple.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/gcc/gimple.h b/gcc/gimple.h
index 6d221fa7aa5..a97a5e8b2d4 100644
--- a/gcc/gimple.h
+++ b/gcc/gimple.h
@@ -90,7 +90,6 @@ enum gf_mask {
GF_CALL_NOTHROW = 1 << 4,
GF_CALL_ALLOCA_FOR_VAR = 1 << 5,
GF_CALL_INTERNAL = 1 << 6,
- GF_CALL_WITH_BOUNDS = 1 << 7,
GF_OMP_PARALLEL_COMBINED = 1 << 0,
GF_OMP_FOR_KIND_MASK = 3 << 0,
GF_OMP_FOR_KIND_FOR = 0 << 0,
@@ -2435,31 +2434,6 @@ gimple_call_internal_p (const_gimple gs)
}
-/* Return true if call GS is marked as instrumented by
- Pointer Bounds Checker. */
-
-static inline bool
-gimple_call_with_bounds_p (const_gimple gs)
-{
- GIMPLE_CHECK (gs, GIMPLE_CALL);
- return (gs->subcode & GF_CALL_WITH_BOUNDS) != 0;
-}
-
-
-/* If INSTRUMENTED_P is true, marm statement GS as instrumented by
- Pointer Bounds Checker. */
-
-static inline void
-gimple_call_set_with_bounds (gimple gs, bool with_bounds)
-{
- GIMPLE_CHECK (gs, GIMPLE_CALL);
- if (with_bounds)
- gs->subcode |= GF_CALL_WITH_BOUNDS;
- else
- gs->subcode &= ~GF_CALL_WITH_BOUNDS;
-}
-
-
/* Return the target of internal call GS. */
static inline enum internal_fn
@@ -5539,26 +5513,6 @@ gimple_return_set_retval (gimple gs, tree retval)
}
-/* Return the return bounds for GIMPLE_RETURN GS. */
-
-static inline tree
-gimple_return_retbnd (const_gimple gs)
-{
- GIMPLE_CHECK (gs, GIMPLE_RETURN);
- return gimple_op (gs, 1);
-}
-
-
-/* Set RETVAL to be the return bounds for GIMPLE_RETURN GS. */
-
-static inline void
-gimple_return_set_retbnd (gimple gs, tree retval)
-{
- GIMPLE_CHECK (gs, GIMPLE_RETURN);
- gimple_set_op (gs, 1, retval);
-}
-
-
/* Returns true when the gimple statement STMT is any of the OpenMP types. */
#define CASE_GIMPLE_OMP \