diff options
author | Richard Guenther <rguenther@suse.de> | 2012-09-06 13:42:28 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-09-06 13:42:28 +0000 |
commit | 342f75af29f1edef49299eac42ae9c83aa32525d (patch) | |
tree | 18601bb7c5498b3b1a77824088656412fc281eb3 /gcc/tree.h | |
parent | b8a2f529041d0a84006ff310e8d387025e732c80 (diff) | |
download | gcc-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.h | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -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. */ |