aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2012-09-06 13:42:28 +0000
committerRichard Guenther <rguenther@suse.de>2012-09-06 13:42:28 +0000
commit6a8121df84666c6960bbb46ec29de4a74dc6e441 (patch)
tree18601bb7c5498b3b1a77824088656412fc281eb3 /gcc/expr.c
parent8a447258212b6d641a39b13dae2b6fdd20de51e7 (diff)
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. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@191022 138bc75d-0d04-0410-961f-82ee72b054a4
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 4e7eb5fbf4c..864d360fe7d 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;
}