i965: Don't try to emit code if we failed register allocation.
authorEric Anholt <eric@anholt.net>
Sat, 2 Oct 2010 00:18:07 +0000 (17:18 -0700)
committerEric Anholt <eric@anholt.net>
Sat, 2 Oct 2010 00:19:04 +0000 (17:19 -0700)
src/mesa/drivers/dri/i965/brw_fs.cpp

index ddf96ca..dd2af2b 100644 (file)
@@ -2808,7 +2808,8 @@ brw_wm_fs_emit(struct brw_context *brw, struct brw_wm_compile *c)
         v.assign_regs();
    }
 
-   v.generate_code();
+   if (!v.fail)
+      v.generate_code();
 
    assert(!v.fail); /* FINISHME: Cleanly fail, tested at link time, etc. */