]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.c
Merge branch 'divVerent/ftypeless-stores' of git://git.xonotic.org/xonotic/gmqcc...
[xonotic/gmqcc.git] / ast.c
diff --git a/ast.c b/ast.c
index bcc2f8ef3f4bc4fb3887facfa047a6c6c6fef712..32ab1a2781bb60dab72082721eed7ef0408c6019 100644 (file)
--- a/ast.c
+++ b/ast.c
@@ -2536,7 +2536,7 @@ bool ast_ifthen_codegen(ast_ifthen *self, ast_function *func, bool lvalue, ir_va
     /* try constant folding away the if */
     if ((fold = fold_cond(condval, func, self)) != -1)
         return fold;
-    
+
     if (self->on_true) {
         /* create on-true block */
         ontrue = ir_function_create_block(ast_ctx(self), func->ir_func, ast_function_label(func, "ontrue"));