bpf: create modifier for mem operand for xchg and cmpxchg
[official-gcc.git] / gcc / testsuite / gcc.target / mips / umips-movep-1.c
blob0865b78bd8c865b23c9149849fa941dea9d96a62
1 /* Check that we can generate the MOVEP instruction. */
2 /* { dg-options "-mgp32 -fpeephole2 (-mmicromips)" } */
3 /* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */
5 long long bar (long long, long long);
7 MICROMIPS long long
8 foo (long long n, long long a)
10 long long i, j;
12 i = bar (n, a);
13 j = bar (n, a);
14 return i + j;
16 /* { dg-final { scan-assembler "\tmovep\t" } } */