Commit a70418fc by Jakub Jelinek

re PR target/49069 (ICE in gen_cstoredi4, at config/arm/arm.md:7554)

	PR target/49069
	* config/arm/arm.md (cbranchdi4, cstoredi4): Use s_register_operand
	instead of cmpdi_operand for first comparison operand.
	Don't assert that comparison operands aren't both constants.

	* gcc.dg/pr49069.c: New test.

From-SVN: r195398
parent a4bfae44
2013-01-23 Jakub Jelinek <jakub@redhat.com>
PR target/49069
* config/arm/arm.md (cbranchdi4, cstoredi4): Use s_register_operand
instead of cmpdi_operand for first comparison operand.
Don't assert that comparison operands aren't both constants.
2013-01-22 Jonathan Wakely <jwakely.gcc@gmail.com> 2013-01-22 Jonathan Wakely <jwakely.gcc@gmail.com>
* doc/install.texi (Downloading the Source): Update references to * doc/install.texi (Downloading the Source): Update references to
......
...@@ -7030,16 +7030,12 @@ ...@@ -7030,16 +7030,12 @@
(define_expand "cbranchdi4" (define_expand "cbranchdi4"
[(set (pc) (if_then_else [(set (pc) (if_then_else
(match_operator 0 "expandable_comparison_operator" (match_operator 0 "expandable_comparison_operator"
[(match_operand:DI 1 "cmpdi_operand" "") [(match_operand:DI 1 "s_register_operand" "")
(match_operand:DI 2 "cmpdi_operand" "")]) (match_operand:DI 2 "cmpdi_operand" "")])
(label_ref (match_operand 3 "" "")) (label_ref (match_operand 3 "" ""))
(pc)))] (pc)))]
"TARGET_32BIT" "TARGET_32BIT"
"{ "{
/* We should not have two constants. */
gcc_assert (GET_MODE (operands[1]) == DImode
|| GET_MODE (operands[2]) == DImode);
if (!arm_validize_comparison (&operands[0], &operands[1], &operands[2])) if (!arm_validize_comparison (&operands[0], &operands[1], &operands[2]))
FAIL; FAIL;
emit_jump_insn (gen_cbranch_cc (operands[0], operands[1], operands[2], emit_jump_insn (gen_cbranch_cc (operands[0], operands[1], operands[2],
...@@ -7955,14 +7951,10 @@ ...@@ -7955,14 +7951,10 @@
(define_expand "cstoredi4" (define_expand "cstoredi4"
[(set (match_operand:SI 0 "s_register_operand" "") [(set (match_operand:SI 0 "s_register_operand" "")
(match_operator:SI 1 "expandable_comparison_operator" (match_operator:SI 1 "expandable_comparison_operator"
[(match_operand:DI 2 "cmpdi_operand" "") [(match_operand:DI 2 "s_register_operand" "")
(match_operand:DI 3 "cmpdi_operand" "")]))] (match_operand:DI 3 "cmpdi_operand" "")]))]
"TARGET_32BIT" "TARGET_32BIT"
"{ "{
/* We should not have two constants. */
gcc_assert (GET_MODE (operands[2]) == DImode
|| GET_MODE (operands[3]) == DImode);
if (!arm_validize_comparison (&operands[1], if (!arm_validize_comparison (&operands[1],
&operands[2], &operands[2],
&operands[3])) &operands[3]))
......
2013-01-21 Thomas Koenig <tkoenig@gcc.gnu.org> 2013-01-21 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/55919 PR fortran/55919
* gfortran.dg/include_8.f90: New test. * scanner.c (add_path_to_list): Copy path to temporary and strip
trailing directory separators before calling stat().
2013-01-17 Richard Biener <rguenther@suse.de> 2013-01-17 Richard Biener <rguenther@suse.de>
......
2013-01-23 Jakub Jelinek <jakub@redhat.com>
PR target/49069
* gcc.dg/pr49069.c: New test.
2013-01-22 Paolo Carlini <paolo.carlini@oracle.com> 2013-01-22 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/55944 PR c++/55944
...@@ -27,8 +32,7 @@ ...@@ -27,8 +32,7 @@
2013-01-21 Thomas Koenig <tkoenig@gcc.gnu.org> 2013-01-21 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/55919 PR fortran/55919
* add_path_to_list: Copy path to temporary and strip * gfortran.dg/include_8.f90: New test.
trailing directory separators before calling stat().
2013-01-21 Uros Bizjak <ubizjak@gmail.com> 2013-01-21 Uros Bizjak <ubizjak@gmail.com>
......
/* PR target/49069 */
/* { dg-do compile } */
/* { dg-options "-Os -fno-tree-forwprop -Wno-div-by-zero" } */
int a;
const unsigned long long b[1] = { 1ULL };
extern void bar (int);
void
foo (void)
{
for (a = 0; a == 1; a = 2)
;
bar (b[0] == (a == 0 ? a : a / 0));
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment