i965: Note that write-after-write dependencies are blocking.
authorMatt Turner <mattst88@gmail.com>
Thu, 28 Mar 2013 17:46:17 +0000 (10:46 -0700)
committerMatt Turner <mattst88@gmail.com>
Fri, 29 Mar 2013 17:13:26 +0000 (10:13 -0700)
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/brw_fs_schedule_instructions.cpp

index aa9c0a6..72b3729 100644 (file)
@@ -36,7 +36,7 @@
  *
  * The basic model of the list scheduler is to take a basic block,
  * compute a DAG of the dependencies (RAW ordering with latency, WAW
- * ordering, WAR ordering), and make a list of the DAG heads.
+ * ordering with latency, WAR ordering), and make a list of the DAG heads.
  * Heuristically pick a DAG head, then put all the children that are
  * now DAG heads into the list of things to schedule.
  *