From 353455e1adbe364c76823454f5b0cd442e199d96 Mon Sep 17 00:00:00 2001
From: Dale Weiler <killfieldengine@gmail.com>
Date: Sun, 29 Sep 2013 22:06:26 -0400
Subject: [PATCH] Remove pointless thinking comment, fix builds for clang.

---
 ir.c     | 2 --
 parser.c | 5 -----
 2 files changed, 7 deletions(-)

diff --git a/ir.c b/ir.c
index 49d4b2f..f33e48c 100644
--- a/ir.c
+++ b/ir.c
@@ -1889,10 +1889,8 @@ ir_value* ir_block_create_unary(ir_block *self, lex_ctx_t ctx,
          */
         case VINSTR_NEG_F:
             return ir_block_create_general_instr(self, ctx, label, INSTR_SUB_F, NULL, operand, ot);
-            break;
         case VINSTR_NEG_V:
             return ir_block_create_general_instr(self, ctx, label, INSTR_SUB_V, NULL, operand, ot);
-            break;
 
         default:
             ot = operand->vtype;
diff --git a/parser.c b/parser.c
index 7d4698e..b5f6fe4 100644
--- a/parser.c
+++ b/parser.c
@@ -472,11 +472,6 @@ static bool parser_sy_apply_operator(parser_t *parser, shunt *sy)
                                       type_name[exprs[0]->vtype]);
                     return false;
                 }
-                /*
-                 * TYPE_VECTOR  = TYPE_FLOAT+1,
-                 * VINSTR_NEG_V = VINSTR_NEG_F+1,
-                 * thus (VINSTR_NEG_F-TYPE_FLOAT) + TYPE_* = VINSTR_NEG_*.
-                 */
                 out = (ast_expression*)ast_unary_new(ctx, (VINSTR_NEG_F-TYPE_FLOAT) + exprs[0]->vtype, exprs[0]);
             }
             break;
-- 
2.39.5