aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.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/expr.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/expr.c')
-rw-r--r--gcc/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index 4e7eb5f..864d360 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -10319,13 +10319,13 @@ expand_expr_real_1 (tree exp, rtx target, enum machine_mode tmode,
value ? label : 0,
value ? 0 : label, -1);
expand_assignment (lhs, build_int_cst (TREE_TYPE (rhs), value),
- MOVE_NONTEMPORAL (exp));
+ false);
do_pending_stack_adjust ();
emit_label (label);
return const0_rtx;
}
- expand_assignment (lhs, rhs, MOVE_NONTEMPORAL (exp));
+ expand_assignment (lhs, rhs, false);
return const0_rtx;
}