]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
alignment fix
authorWolfgang Bumiller <wolfgang.linux@bumiller.com>
Tue, 1 May 2012 10:43:10 +0000 (12:43 +0200)
committerWolfgang Bumiller <wolfgang.linux@bumiller.com>
Tue, 1 May 2012 10:43:10 +0000 (12:43 +0200)
ir.h

diff --git a/ir.h b/ir.h
index cbddf71c40cbe4b46a11320a85198d9e133e50ab..45f419dc3d3be784d3b8bce8405f5fcb00368d7c 100644 (file)
--- a/ir.h
+++ b/ir.h
@@ -168,7 +168,7 @@ bool GMQCC_WARN ir_phi_add(ir_instr*, ir_block *b, ir_value *v);
 bool GMQCC_WARN ir_block_create_return(ir_block*, ir_value *opt_value);
 
 bool GMQCC_WARN ir_block_create_if(ir_block*, ir_value *cond,
-                             ir_block *ontrue, ir_block *onfalse);
+                                   ir_block *ontrue, ir_block *onfalse);
 /* A 'goto' is an actual 'goto' coded in QC, whereas
  * a 'jump' is a virtual construct which simply names the
  * next block to go to.