1 /* { dg-options "-mcompact-branches=optimal isa_rev>=6" } */
2 int glob;
3
4 void
foo(int a,int b,volatile int * bar)5 foo (int a, int b, volatile int * bar)
6 {
7 if (a < b)
8 glob = *bar;
9 }
10
11 /* { dg-final { scan-assembler "\tb\[^ \t\]*c" } } */
12