panic() instead of assert(0)ing.
authorChristoph Mallon <christoph.mallon@gmx.de>
Tue, 23 Sep 2008 20:49:57 +0000 (20:49 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Tue, 23 Sep 2008 20:49:57 +0000 (20:49 +0000)
[r22221]

ir/be/ia32/ia32_transform.c

index 82a91c4..faf4630 100644 (file)
@@ -4144,8 +4144,7 @@ static ir_node *gen_Proj_Load(ir_node *node) {
                return new_rd_Proj(dbgi, irg, block, new_pred, mode_M, 1);
        }
 
-       assert(0);
-       return new_rd_Unknown(irg, get_irn_mode(node));
+       panic("No idea how to transform proj");
 }
 
 /**