aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-pretty-print.c
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-pretty-print.c
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-pretty-print.c')
-rw-r--r--gcc/tree-pretty-print.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c
index 8bd483a..4263b39 100644
--- a/gcc/tree-pretty-print.c
+++ b/gcc/tree-pretty-print.c
@@ -1436,9 +1436,6 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags,
false);
pp_space (buffer);
pp_character (buffer, '=');
- if (TREE_CODE (node) == MODIFY_EXPR
- && MOVE_NONTEMPORAL (node))
- pp_string (buffer, "{nt}");
pp_space (buffer);
dump_generic_node (buffer, TREE_OPERAND (node, 1), spc, flags,
false);