代码搜索:Scan
找到约 10,000 项符合「Scan」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5528995
c i386-darwin-fpmath.c
/* { dg-do compile { target i?86-*-darwin* } } */
/* { dg-final { scan-assembler "addsd" } } */
/* Do not add -msse or -msse2 or -mfpmath=sse to the options. GCC is
supposed to use SSE math on Dar
www.eeworm.com/read/162614/5529960
c symbian2.c
/* { dg-do compile { target arm*-*-symbianelf* } } */
/* { dg-options "-O2" } */
/* Symbian OS requires that builtins not be expanded by default. Make
sure that a reference to "strlen" is emitted
www.eeworm.com/read/162614/5530141
c iftrap-1.c
/* Verify that we optimize to conditional traps. */
/* { dg-options "-O" } */
/* { dg-do compile { target rs6000-*-* powerpc-*-* sparc*-*-* ia64-*-* } } */
/* { dg-final { scan-assembler-not "^\t(tra
www.eeworm.com/read/162614/5530263
c debug-1.c
/* Verify that the scheduler does not discard the lexical block. */
/* { dg-do compile } */
/* { dg-options "-dA" } */
/* { dg-final { scan-assembler "xyzzy" } } */
long p;
long foo(void)
{
{
www.eeworm.com/read/162614/5530293
c debug-2.c
/* Verify that the scheduler does not discard the lexical block. */
/* { dg-do compile } */
/* { dg-options "-dA" } */
/* { dg-final { scan-assembler "xyzzy" } } */
long p;
long foo(void)
{
if (1
www.eeworm.com/read/162614/5530396
c ssa-dse-5.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int x;
int
f1 (int i, int j, int k)
{
int *p = k ? &i : &j;
i = 3;
*p = 5;
x = j;
}
/* The assignment "i =
www.eeworm.com/read/162614/5530462
c vrp03.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp" } */
struct A
{
int a;
int b;
};
foo (struct A *p, struct A *q)
{
int *r = 0;
if (p)
{
if (p == q)
{
/* This shou
www.eeworm.com/read/162614/5530595
c tailrecursion-5.c
/* { dg-do run } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
extern void abort (void);
extern void exit (int);
int sum (int n)
{
if (n == 0)
return 0;
return n + sum (n - 1);
}
int
www.eeworm.com/read/162614/5530607
c vrp07.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp-details" } */
foo (int i, int *p)
{
int j;
if (i > 10)
{
if (p)
{
j = *p;
/* This should be folded to if (1) because
www.eeworm.com/read/162614/5530617
c builtin-fprintf-1.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-fab" } */
typedef struct { int i; } FILE;
FILE *fp;
extern int fprintf (FILE *, const char *, ...);
volatile int vi0, vi1, vi2, vi3, vi4, vi5,