Fix indentation

Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
Antonio Niño Díaz
2017-07-01 14:25:19 +01:00
parent fa36042131
commit bb12806da1

View File

@@ -1068,12 +1068,14 @@ const : T_ID { $$ = sym_GetConstantValue($1); }
| const T_OP_SHL const { $$ = $1 << $3; } | const T_OP_SHL const { $$ = $1 << $3; }
| const T_OP_SHR const { $$ = $1 >> $3; } | const T_OP_SHR const { $$ = $1 >> $3; }
| const T_OP_MUL const { $$ = $1 * $3; } | const T_OP_MUL const { $$ = $1 * $3; }
| const T_OP_DIV const { | const T_OP_DIV const
{
if ($3 == 0) if ($3 == 0)
fatalerror("division by zero"); fatalerror("division by zero");
$$ = $1 / $3; $$ = $1 / $3;
} }
| const T_OP_MOD const { | const T_OP_MOD const
{
if ($3 == 0) if ($3 == 0)
fatalerror("division by zero"); fatalerror("division by zero");
$$ = $1 % $3; $$ = $1 % $3;