代码搜索:optimized
找到约 6,562 项符合「optimized」的源代码
代码结果 6,562
www.eeworm.com/read/366702/2882883
c pr22051-2.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized -w" } */
void *arf ();
int
foo()
{
void (*q)(void);
int r = q;
if (r != 0)
return 1;
else
return 2;
}
/* The
www.eeworm.com/read/366702/2882966
c loop-5.c
/* A test for induction variable merging. */
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
void foo(long);
void xxx(void)
{
long iter, jter;
for (iter = 0, jter = 2
www.eeworm.com/read/366702/2883011
c 20031106-3.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
extern void link_error (void);
/* Check for cprop on array elements. */
void foo (int testarray[])
{
testarray[0] = 0;
www.eeworm.com/read/366702/2883059
c 20050412-1.c
/* PR tree-optimization/14627 */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int b;
void foo (int a) {
if (a)
a = 3;
b = a;
}
/* Make sure we do not have an assignm
www.eeworm.com/read/366702/2883112
c ssa-ccp-15.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
/* Check that the initial values are honored when necessary. */
void link_error (void);
/* The call to link_error cannot b
www.eeworm.com/read/366702/2883145
c 20031106-1.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
extern void link_error (void);
/* Check for dead stores to an array. */
void foo (int testarray[])
{
testarray[0] = 0;
www.eeworm.com/read/366702/2883184
c phi-opt-1.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
int f(int a, int b, int c)
{
if (c == 0) goto temp;
if (a == 0)
return 0;
temp:
if (a == b)
return a;
return a;
}
www.eeworm.com/read/366702/2883208
c ssa-ifcombine-1.c
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized" } */
/* Testcase for PR31657. */
int foo (int x, int a, int b)
{
int c = 1
www.eeworm.com/read/366702/2883227
c 20040204-1.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
extern void link_error (void);
/*
test that a condition is propagated inside an if
*/
void test5 (int x)
{
extern int
www.eeworm.com/read/366702/2883361
c bool-6.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
int f(_Bool x)
{
int y;
if (x)
y = 1;
else
y = 0;
return y;
}
/* There should be no == 1 which is produced by