summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-10-01 17:18:07 -0700
committerEric Anholt <eric@anholt.net>2010-10-01 17:19:04 -0700
commit64a9fc3fc15603a8e25d0e1146fe5da5a5bde55b (patch)
tree770a90b50f2546d8fbffceaec45155a368e97b5c
parent6397addd6146661689a0e315b06e543ef12d8868 (diff)
i965: Don't try to emit code if we failed register allocation.
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index ddf96ca22d..dd2af2bd1d 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -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. */