aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/mulcmp-1.c
blob: 6ff2ff5a388fbc0b1e7c81fcd65e6722ebcfefb6 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized-raw" } */

int f(unsigned a,unsigned b){
    a *= 3;
    b *= 3;
    return a == b;
}

/* { dg-final { scan-tree-dump-not "mult_expr" "optimized" } } */