glsl: removing double semi-colons
authorJakob Sinclair <sinclair.jakob@openmailbox.org>
Wed, 13 Apr 2016 16:43:09 +0000 (18:43 +0200)
committerChad Versace <chad.versace@intel.com>
Tue, 26 Apr 2016 21:36:29 +0000 (14:36 -0700)
Trivial change. Removing unnecessary semi-colons from the code.
I don't have push access so someone reviewing this can push it.

Signed-off-by: Jakob Sinclair <sinclair.jakob@openmailbox.org>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-by: Chad Versace <chad.versace@intel.com>
src/compiler/glsl/ast_function.cpp
src/compiler/glsl/ir_rvalue_visitor.cpp

index db68d5dfa48f38a8e6e28da932310f7c5c117b1f..f50c7bf7b71e077601338ea75582beb85f09e193 100644 (file)
@@ -1690,7 +1690,7 @@ process_record_constructor(exec_list *instructions,
                           constructor_type->fields.structure[i].name,
                           ir->type->name,
                           constructor_type->fields.structure[i].type->name);
-         return ir_rvalue::error_value(ctx);;
+         return ir_rvalue::error_value(ctx);
       }
 
       node = node->next;
index 6ab6cf02176ec10fe24e4da55e1cc71844a71851..addcc683df0e487f8c8beb0353a98d0006fcb43a 100644 (file)
@@ -146,7 +146,7 @@ ir_rvalue_base_visitor::rvalue_visit(ir_discard *ir)
 ir_visitor_status
 ir_rvalue_base_visitor::rvalue_visit(ir_return *ir)
 {
-   handle_rvalue(&ir->value);;
+   handle_rvalue(&ir->value);
    return visit_continue;
 }