openbsd-ports/lang/gcc/3.3/patches/pp-gcc_tree_h
2005-01-04 23:06:33 +00:00

14 lines
638 B
Plaintext

$OpenBSD: pp-gcc_tree_h,v 1.1 2005/01/04 23:06:33 espie Exp $
--- gcc/tree.h.orig Sat Jan 3 06:14:23 2004
+++ gcc/tree.h Mon Jan 3 10:17:42 2005
@@ -1643,6 +1647,9 @@ struct tree_type GTY(())
/* Nonzero in a FUNCTION_DECL means this function can be substituted
where it is called. */
#define DECL_INLINE(NODE) (FUNCTION_DECL_CHECK (NODE)->decl.inline_flag)
+
+/* Nonzero in a VAR_DECL means this variable is skipped by propolice. */
+#define DECL_VAR_INLINE(NODE) (VAR_DECL_CHECK (NODE)->decl.inline_flag)
/* Nonzero in a FUNCTION_DECL means this function has been found inlinable
only by virtue of -finline-functions */