aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2012-09-06 13:42:28 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2012-09-06 13:42:28 +0000
commit342f75af29f1edef49299eac42ae9c83aa32525d (patch)
tree18601bb7c5498b3b1a77824088656412fc281eb3 /gcc/tree.h
parentb8a2f529041d0a84006ff310e8d387025e732c80 (diff)
downloadgcc-342f75af29f1edef49299eac42ae9c83aa32525d.zip
gcc-342f75af29f1edef49299eac42ae9c83aa32525d.tar.gz
gcc-342f75af29f1edef49299eac42ae9c83aa32525d.tar.bz2
tree.h (MOVE_NONTEMPORAL): Remove.
2012-09-06 Richard Guenther <rguenther@suse.de> * tree.h (MOVE_NONTEMPORAL): Remove. * tree-pretty-print.c (dump_generic_node): Remove MOVE_NONTEMPORAL handling. * expr.c (expand_expr_real_1): Likewise. From-SVN: r191022
Diffstat (limited to 'gcc/tree.h')
-rw-r--r--gcc/tree.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index bca0576..6d32632 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -524,9 +524,6 @@ struct GTY(()) tree_base {
TYPE_REF_CAN_ALIAS_ALL in
POINTER_TYPE, REFERENCE_TYPE
- MOVE_NONTEMPORAL in
- MODIFY_EXPR
-
CASE_HIGH_SEEN in
CASE_LABEL_EXPR
@@ -1162,10 +1159,6 @@ extern void omp_clause_range_check_failed (const_tree, const char *, int,
#define TYPE_REF_CAN_ALIAS_ALL(NODE) \
(PTR_OR_REF_CHECK (NODE)->base.static_flag)
-/* In a MODIFY_EXPR, means that the store in the expression is nontemporal. */
-#define MOVE_NONTEMPORAL(NODE) \
- (EXPR_CHECK (NODE)->base.static_flag)
-
/* In an INTEGER_CST, REAL_CST, COMPLEX_CST, or VECTOR_CST, this means
there was an overflow in folding. */