代码搜索:optimized

找到约 6,562 项符合「optimized」的源代码

代码结果 6,562
www.eeworm.com/read/162614/5530524

c 20030907-1.c

/* PR optimization/12198 This was a miscompilation of a switch expressions because the "Case Ranges" extension wasn't handled in tree-cfg.c. */ /* { dg-do compile } */ /* { dg-options "-O -fd
www.eeworm.com/read/162614/5530560

c 20040430-1.c

/* PR middle-end/14470. Similar to gcc.c-torture/execute/20040313-1.c, but with a compile time test to make sure the second if() is removed. */ /* Update: We now remove both ifs. Whee. */ /*
www.eeworm.com/read/162614/5530624

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
www.eeworm.com/read/162614/5530647

c bool-2.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 != 0 which is produced by
www.eeworm.com/read/162614/5518556

c tmmti-2.c

/* { dg-do compile } */ /* { dg-options { -O -fdump-tree-optimized } } */ int a[4][8]; int foo(int i) { return *(&a[0][0] + i*8); // a[i][0] } struct Foo { double x, y; }; Foo b[4]; double bar(i
www.eeworm.com/read/162614/5530370

c 20030824-2.c

/* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-optimized" } */ struct A { int a,b; }; int foo (int x, int y) { int i, j; struct A a; a.a = x; a.b = y; j = a.a; i = a.b; re
www.eeworm.com/read/162614/5530393

c alias-2.c

/* { dg-options "-O2 -fdump-tree-optimized" } */ static int a; int f; void bar (void) __attribute__((noinline)); void bar (void) { f = 9; } void link_error (); int foo() { int b, c; a = 5;