Add missing break in a switch which caused an incorrect assertion.
authorChristoph Mallon <christoph.mallon@gmx.de>
Thu, 24 May 2007 13:36:03 +0000 (13:36 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Thu, 24 May 2007 13:36:03 +0000 (13:36 +0000)
[r14025]

ir/be/ia32/ia32_finish.c

index 267f384..eb6b887 100644 (file)
@@ -235,6 +235,8 @@ static void ia32_transform_lea_to_add_or_shl(ir_node *irn, ia32_code_gen_t *cg)
                                        /* in registers a different from out -> no Add possible */
                                        return;
                                }
+                               break;
+
                        default:
                                assert(0);
                                break;