代码搜索:checking
找到约 6,492 项符合「checking」的源代码
代码结果 6,492
www.eeworm.com/read/240162/4580311
c aggregates.c
// { dg-do run { target i?86-*-linux* i?86-*-freebsd* } }
// { dg-options "-malign-double" }
// Origin: Alex Samuel
/* Test the data layout of C aggregates by checking aggre
www.eeworm.com/read/240162/4589778
c scalar-return-3_x.c
#include "compat-common.h"
/* Turn off checking for variable arguments with -DSKIPVA. */
#ifdef SKIPVA
const int test_va = 0;
#else
const int test_va = 1;
#endif
#define T(NAME, TYPE, INITVAL)
www.eeworm.com/read/240162/4589831
c scalar-return-1_x.c
#include "compat-common.h"
/* Turn off checking for variable arguments with -DSKIPVA. */
#ifdef SKIPVA
const int test_va = 0;
#else
const int test_va = 1;
#endif
#define T(NAME, TYPE, INITVAL)
www.eeworm.com/read/240162/4590232
c branch-1.c
/* Test for format checking of conditional expressions. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -Wformat" } */
#include "format.h"
void
f
www.eeworm.com/read/233448/4672016
c pr20931.c
// PR middle-end
// This testcase ICEd because fold checking saw a type change which
// is allowed as TYPE_CONTAINS_PLACEHOLDER_INTERNAL could change.
// { dg-do compile }
// { dg-options "-O2" }
i
www.eeworm.com/read/233448/4673128
c aggregates.c
// { dg-do run { target i?86-*-linux* i?86-*-freebsd* } }
// { dg-options "-malign-double" }
// Origin: Alex Samuel
/* Test the data layout of C aggregates by checking aggre
www.eeworm.com/read/233448/4685656
c rs6000-power2-1.c
/* { dg-do compile { target powerpc-*-* rs6000-*-* } } */
/* { dg-options "-O3 -mcpu=power2 -fno-schedule-insns -w -mhard-float" } */
/* This used to ICE as the peephole was not checking to see
if
www.eeworm.com/read/233448/4686214
c branch-1.c
/* Test for format checking of conditional expressions. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -Wformat" } */
#include "format.h"
void
f
www.eeworm.com/read/209211/4984936
c fmod.c
/* floating-point mod function without infinity or NaN checking */
#include
double
fmod (double x, double y)
{
int sign = 0, yexp;
double r, yfr;
if (y == 0)
return 0;
if (y < 0)
y =
www.eeworm.com/read/209211/4985289
c fmod.c
#include
#include
/*
* floating-point mod function without infinity or NaN checking
*/
double
fmod (double x, double y)
{
int sign, yexp, rexp;
double r, yfr, rfr;
if (y == 0)