代码搜索:optimized
找到约 6,562 项符合「optimized」的源代码
代码结果 6,562
www.eeworm.com/read/366702/2882872
c asm-2.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
#ifdef __hppa__
#define REGISTER "1"
#else
#define REGISTER "0"
#endif
void baz(void)
{
register int xyzzy asm(REGISTER) = 1
www.eeworm.com/read/366702/2882884
c structopt-3.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
struct foo
{
int a;
int b;
} temp;
/* We should be able to optimize this to return 11. */
int main(void)
{
temp.a = 5;
tem
www.eeworm.com/read/366702/2882887
c 20031106-2.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
extern void link_error (void);
/* Check for dead stores to a struct. */
struct s
{
char d;
int a, b;
double m;
};
v
www.eeworm.com/read/366702/2882920
c ssa-ifcombine-5.c
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized" } */
/* Testcase from PR15353. */
int g(void);
int h(void);
int f(int *i, int *j)
{
while (1)
{
if (*i > *j || *i == *
www.eeworm.com/read/366702/2883004
c ssa-ccp-7.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
extern void link_error (void);
/* tests to check if cprop works when using non-return functions */
extern int not_returnin
www.eeworm.com/read/366702/2883065
c wholeprogram-2.c
/* { dg-options "-O2 -fdump-tree-optimized -fwhole-program" } */
__attribute__ ((externally_visible))
void
externally_visible_function ()
{
}
/* { dg-final { scan-tree-dump "externally_visible_functio
www.eeworm.com/read/366702/2883192
c pr23777.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
extern void f(char *const *);
void g (char **o)
{
static const char *const multilib_exclusions_raw[] = { 0 };
const char *
www.eeworm.com/read/366702/2883213
c reassoc-1.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int a, b, c, d;
extern int printf (const char *, ...);
int main(void)
{
int e;
int f;
/* We should be able to transform
www.eeworm.com/read/366702/2883231
c pr27236.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
static inline int inline_read(volatile int *mem)
{
return *mem;
}
__attribute__ ((noinline))
int foo_read(volatile int
www.eeworm.com/read/366702/2883260
c reassoc-5.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
extern int printf (const char *, ...);
int main(int argc, int b)
{
/* We should be able to get rid of the a - i. */
int i