mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
Avoid calling tracer.trailer() twice.
gcc/ChangeLog: * gimple-range-gori.cc (gori_compute::logical_combine): Avoid calling tracer.trailer().
This commit is contained in:
parent
b65945e7fb
commit
576d524559
@ -810,8 +810,12 @@ gori_compute::logical_combine (vrange &r, enum tree_code code,
|
||||
}
|
||||
else
|
||||
res = false;
|
||||
if (idx)
|
||||
tracer.trailer (idx, "logical_combine", res, NULL_TREE, r);
|
||||
if (idx && res)
|
||||
{
|
||||
tracer.print (idx, "logical_combine produced ");
|
||||
r.dump (dump_file);
|
||||
fputc ('\n', dump_file);
|
||||
}
|
||||
}
|
||||
|
||||
switch (code)
|
||||
|
Loading…
Reference in New Issue
Block a user