代码搜索:optimized
找到约 6,562 项符合「optimized」的源代码
代码结果 6,562
www.eeworm.com/read/366702/2883051
c bool-8.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
int f(_Bool x)
{
return (x == 1);
}
/* There should be no == 1 which is produced by the front-end as
bool_var == 1 is th
www.eeworm.com/read/366702/2883052
c pr21029.c
/* { dg-do run } */
/* { dg-options "-O2 -fwrapv" } */
/* PR tree-optimization/21029
f() used to get optimized to an infinite loop by tree-vrp, because
j is assumed to be non-negative. Even t
www.eeworm.com/read/366702/2883074
c loop-11.c
/* A test for final value replacement and higher-order ivs,
see PR 22442. */
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
void bar (unsigned);
void foo (void)
{
un
www.eeworm.com/read/366702/2883126
c 20031106-5.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
extern void link_error (void);
/* Check for cprop on different fields of same type structs. */
struct s
{
char d;
int
www.eeworm.com/read/366702/2883129
c bool-11.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
int f(_Bool x)
{
return (x == 0);
}
/* There should be no == 0 which is produced by the front-end as
bool_var == 0 is th
www.eeworm.com/read/366702/2883141
c 20030825-1.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
void bla(void);
void
foo(int c, int d)
{
goto skip;
ebef:
goto xxx;
skip:
if (c)
{
xxx:;
if (!c)
bla (
www.eeworm.com/read/366702/2883155
c sra-4.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized -w" } */
/* Check that SRA does non block copies for structs that just contain vectors. */
#define vector __attribute__((vector_size
www.eeworm.com/read/366702/2883160
c 20031216-1.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
extern void link_error (void);
void
foo (int b)
{
int a;
a = b + 2;
a--;
a--;
if (a != b)
link_error ();
}
/*
www.eeworm.com/read/366702/2883247
c asm-3.c
/* PR 17739 */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
#ifdef __hppa__
#define REGISTER "1"
#else
#define REGISTER "0"
#endif
static inline int source(void)
{
regi
www.eeworm.com/read/366702/2883286
c bool-10.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
int f(_Bool x)
{
return (x != 1);
}
/* There should be no != 1 which is produced by the front-end as
bool_var != 1 is th