Skip to content

Commit 9651794

Browse files
committed
arm: Update unexpected empty split condition
gcc/ChangeLog: * config/arm/vfp.md (no_literal_pool_df_immediate, no_literal_pool_sf_immediate): Fix empty split condition.
1 parent ed106d6 commit 9651794

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gcc/config/arm/vfp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2129,7 +2129,7 @@
21292129
&& !arm_const_double_rtx (operands[1])
21302130
&& !(TARGET_VFP_DOUBLE && vfp3_const_double_rtx (operands[1]))"
21312131
"#"
2132-
""
2132+
"&& 1"
21332133
[(const_int 0)]
21342134
{
21352135
long buf[2];
@@ -2154,7 +2154,7 @@
21542154
&& TARGET_VFP_BASE
21552155
&& !vfp3_const_double_rtx (operands[1])"
21562156
"#"
2157-
""
2157+
"&& 1"
21582158
[(const_int 0)]
21592159
{
21602160
long buf;

0 commit comments

Comments
 (0)