Bill Wendling 2aae6ae572 Micro-optimization:
If we have this situation:

    jCC  L1
    jmp  L2
L1:
  ...
L2:
  ...

We can get a small performance boost by emitting this instead:

    jnCC L2
L1:
  ...
L2:
  ...

This testcase shows an example of this:

float func(float x, float y) {
    double product = (double)x * y;
    if (product == 0.0)
        return product;
    return product - 1.0;
}



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101075 91177308-0d34-0410-b5e6-96231b3b80d8
2010-04-12 22:19:57 +00:00
..
2010-04-12 22:19:57 +00:00
2010-04-07 18:04:56 +00:00
2010-04-07 22:53:17 +00:00
2010-04-09 15:03:55 +00:00
2010-04-05 22:30:05 +00:00
2010-04-04 19:28:59 +00:00
2010-03-25 20:01:07 +00:00