From 4cecb7fd8a439ef07707adc43607d4f717319220 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Fri, 31 Aug 2012 12:41:07 +0200 Subject: [PATCH] Simplify rounding next_block_nr. --- ir/be/begnuas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/be/begnuas.c b/ir/be/begnuas.c index 0d5195df4..aa1e175cf 100644 --- a/ir/be/begnuas.c +++ b/ir/be/begnuas.c @@ -593,7 +593,7 @@ void be_gas_emit_function_epilog(const ir_entity *entity) be_emit_write_line(); next_block_nr += 199; - next_block_nr = next_block_nr/100*100; + next_block_nr -= next_block_nr % 100; } /** -- 2.20.1