===================================================================
@@ -14466,6 +14466,8 @@
fprintf (dump_file, "trailing nott insn %d\n", INSN_UID (nott_insn));
}
+ emit_insn (insnlist.first);
+
if (nott_insn != NULL && append_nott)
{
if (dump_file)
@@ -14475,8 +14477,6 @@
append_nott = false;
}
- emit_insn (insnlist.first);
-
if (append_nott)
nott_insn = emit_insn (gen_nott (get_t_reg_rtx ()));
===================================================================
@@ -742,9 +742,13 @@
variant instead and load the constant into a reg. For that we'd need
to do some analysis. */
- if ((op1val & 0xFFFF) == 0
- && CONST_OK_FOR_K08 (op1val >> 16) && optimize_size)
+ if (CONST_OK_FOR_K08 (op1val))
{
+ /* Do nothing. */
+ }
+ else if ((op1val & 0xFFFF) == 0
+ && CONST_OK_FOR_K08 (op1val >> 16) && optimize_size)
+ {
/* Use a swap.w insn to do a shift + reg copy (to R0) in one insn. */
op1val = op1val >> 16;
rtx r = gen_reg_rtx (SImode);
===================================================================
@@ -0,0 +1,10 @@
+/* Verify that TST #imm, R0 instruction is generated if the constant
+ allows it when compiling for -Os. */
+/* { dg-do compile } */
+/* { dg-options "-Os" } */
+/* { dg-final { scan-assembler-not "and" } } */
+/* { dg-final { scan-assembler-not "extu" } } */
+/* { dg-final { scan-assembler-not "exts" } } */
+/* { dg-final { scan-assembler-not "shlr" } } */
+
+#include "pr49263.c"