i965g: Add fallthrough comments in switch statement.
authorVinson Lee <vlee@vmware.com>
Tue, 23 Feb 2010 07:32:43 +0000 (23:32 -0800)
committerVinson Lee <vlee@vmware.com>
Tue, 23 Feb 2010 07:32:43 +0000 (23:32 -0800)
Silences warnings about missing break statements in static analysis.

src/gallium/drivers/i965/brw_draw_upload.c

index d592615..9f136ee 100644 (file)
@@ -359,9 +359,9 @@ static int brw_emit_vertex_elements(struct brw_context *brw)
       uint32_t comp3 = BRW_VE1_COMPONENT_STORE_SRC;
 
       switch (input->nr_components) {
-      case 0: comp0 = BRW_VE1_COMPONENT_STORE_0;
-      case 1: comp1 = BRW_VE1_COMPONENT_STORE_0;
-      case 2: comp2 = BRW_VE1_COMPONENT_STORE_0;
+      case 0: comp0 = BRW_VE1_COMPONENT_STORE_0; /* fallthrough */
+      case 1: comp1 = BRW_VE1_COMPONENT_STORE_0; /* fallthrough */
+      case 2: comp2 = BRW_VE1_COMPONENT_STORE_0; /* fallthrough */
       case 3: comp3 = BRW_VE1_COMPONENT_STORE_1_FLT;
         break;
       }