代码搜索:optimized
找到约 6,562 项符合「optimized」的源代码
代码结果 6,562
www.eeworm.com/read/366702/2881867
c 20030711-1.c
/* Test whether strncmp has not been "optimized" into memcmp
nor any code with memcmp semantics. */
/* { dg-do run { target i?86-*-linux* x86_64-*-linux* ia64-*-linux* alpha*-*-linux* powerpc*-*-l
www.eeworm.com/read/366702/2882205
c 20050826-1.c
/* Test whether strncmp has not been "optimized" into memcmp
nor any code with memcmp semantics. */
/* { dg-do run { target i?86-*-linux* x86_64-*-linux* ia64-*-linux* alpha*-*-linux* powerpc*-*-l
www.eeworm.com/read/366702/2882387
c update-loopch.c
/* { dg-options "-O2 -fdump-tree-tree_profile-blocks -fdump-tree-optimized-blocks" } */
int max = 33333;
int a[8];
int
main ()
{
int i;
for (i = 0; i < max; i++)
{
a[i % 8]++;
}
re
www.eeworm.com/read/366702/2882871
c pr23848-4.c
/* PR middle-end/23848 */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
void bar (char *, char *, char *, char *, int);
void foo (int size)
{
char temp[size];
temp[size
www.eeworm.com/read/366702/2882898
c sra-1.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized --param sra-max-structure-size=32" } */
/* Tests for SRA. */
typedef struct teststruct
{
double d;
char f1;
} teststruct;
voi
www.eeworm.com/read/366702/2882905
c reassoc-4.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized -ffast-math" } */
float a, b, c, d;
extern int printf (const char *, ...);
int main(void)
{
float e;
float f;
/* We should not
www.eeworm.com/read/366702/2882924
c pr23848-2.c
/* PR middle-end/23848 */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
void bar (char *, char *, char *, char *, int);
void foo (int size)
{
char temp[size];
temp[size
www.eeworm.com/read/366702/2882927
c alias-6.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
struct param { int *a; };
void foo(struct param *p);
int bar(void)
{
int a[2];
struct param p;
a[0] = 1;
a[1] = 1;
p
www.eeworm.com/read/366702/2882970
c pr24990-1.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
int f(int x)
{
return ((~x) != 0);
}
int f1(int x)
{
return ((~x) == 0);
}
/* There should be no != 0 which is produced b
www.eeworm.com/read/366702/2882975
c loop-31.c
/* PR 32283 */
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
short a[(2048)];
short foo (int len, int v)
{
int i;
for (i = 0; i < len; i++) {
a[i] = v;
}
ret