blob: aee058d55481cc95664b0112a83e775a4138d7fd [file] [log] [blame]
/* APPLE LOCAL Disable string insns with -Os on Darwin (radar 3509006) */
/* { dg-do compile { target powerpc*-apple-darwin* } } */
/* { dg-options "-Os" } */
/* On ppc at Apple, -Os should not use string instructions. 3509006. */
struct s { int a; int b; int c; };
int foo (struct s* p, struct s* q) {
*p = *q;
}
/* { dg-final { scan-assembler-not "lswi" } } */