comparison gcc/testsuite/gcc.target/powerpc/pr93800.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
1 /* { dg-do compile } */
2 /* { dg-options "-mdejagnu-cpu=860 -O2" } */
3 /* { dg-require-effective-target ilp32 } */
4 /* { dg-final { scan-assembler-not "\\.p2align 4" } } */
5
6 volatile int g;
7 int f(int a, int b)
8 {
9 int i;
10
11 for (i = 0; i < b; i++)
12 a += g;
13 return a;
14 }