aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
authorKenneth Zadeck <zadeck@naturalbridge.com>2008-05-14 17:05:13 +0000
committerKenneth Zadeck <zadeck@gcc.gnu.org>2008-05-14 17:05:13 +0000
commit84b8030f0eec58ad1aee8f9fc500f3f86f777ef8 (patch)
tree81f15ffce6244463dae4466631dbaf409875916c /gcc/tree.h
parentf403a4a270a54f42ce8bddabbce58797adfd5c07 (diff)
downloadgcc-84b8030f0eec58ad1aee8f9fc500f3f86f777ef8.zip
gcc-84b8030f0eec58ad1aee8f9fc500f3f86f777ef8.tar.gz
gcc-84b8030f0eec58ad1aee8f9fc500f3f86f777ef8.tar.bz2
optabs.c (prepare_cmp_insn): Changed LCT_PURE_MAKE_BLOCK to LCT_PURE and LCT_CONST_MAKE_BLOCK to LCT_CONST...
2008-05-14 Kenneth Zadeck <zadeck@naturalbridge.com> * optabs.c (prepare_cmp_insn): Changed LCT_PURE_MAKE_BLOCK to LCT_PURE and LCT_CONST_MAKE_BLOCK to LCT_CONST in calls to emit_library_call_value. * builtins.c (expand_builtin_powi, expand_builtin_memcmp): Ditto. * tree.h (ECF_LIBCALL_BLOCK): Removed. * calls.c (initialize_argument_information, precompute_arguments, expand_call, emit_library_call_value_1): Remove ECF_LIBCALL_BLOCK. (precompute_arguments): Removed flags parameter. * rtl.h (LCT_CONST_MAKE_BLOCK, LCT_PURE_MAKE_BLOCK): Removed. From-SVN: r135299
Diffstat (limited to 'gcc/tree.h')
-rw-r--r--gcc/tree.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index d4bd080..0618d0a 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -4970,11 +4970,9 @@ extern tree build_duplicate_type (tree);
#define ECF_RETURNS_TWICE (1 << 7)
/* Nonzero if this call replaces the current stack frame. */
#define ECF_SIBCALL (1 << 8)
-/* Create libcall block around the call. */
-#define ECF_LIBCALL_BLOCK (1 << 9)
/* Function does not read or write memory (but may have side effects, so
it does not necessarily fit ECF_CONST). */
-#define ECF_NOVOPS (1 << 10)
+#define ECF_NOVOPS (1 << 9)
extern int flags_from_decl_or_type (const_tree);
extern int call_expr_flags (const_tree);