arm.c (neon_dereference_pointer): Do not call covert during RTL expansion.

2012-03-12  Richard Guenther  <rguenther@suse.de>

	* config/arm/arm.c (neon_dereference_pointer): Do not call
	covert during RTL expansion.

From-SVN: r185233
This commit is contained in:
Richard Guenther 2012-03-12 14:52:56 +00:00 committed by Richard Biener
parent 281740d1f5
commit bb008427e1
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2012-03-12 Richard Guenther <rguenther@suse.de>
* config/arm/arm.c (neon_dereference_pointer): Do not call
covert during RTL expansion.
2012-03-12 Tristan Gingold <gingold@adacore.com>
* doc/invoke.texi (VMS Options): Merge Alpha/VMS and IA-64/VMS

View file

@ -20637,9 +20637,8 @@ neon_dereference_pointer (tree exp, enum machine_mode mem_mode,
array_type = build_array_type (elem_type, build_index_type (upper_bound));
/* Dereference EXP using that type. */
exp = convert (build_pointer_type (array_type), exp);
return fold_build2 (MEM_REF, array_type, exp,
build_int_cst (TREE_TYPE (exp), 0));
build_int_cst (build_pointer_type (array_type), 0));
}
/* Expand a Neon builtin. */