代码搜索结果
找到约 820,005 项符合
if 的代码
pr15791-1.c
/* { dg-do link } */
void link_error ();
int main ()
{
struct { int b[2]; } x;
int b[2];
if (&b[1] != &b[1])
link_error ();
if (&b[0] != b)
link_error ();
if (b == &b[2])
link_
pr21082.c
/* { dg-do link } */
void link_error();
int a[4];
long b, c;
int main()
{
if (&a[b] - &a[c] != b - c)
link_error();
return 0;
}
pr15791-2.c
/* { dg-do link } */
/* { dg-options "" } */
void link_error ();
struct a {};
int main ()
{
struct a b[2];
if (&b[0] == &b[1])
link_error ();
return 0;
}
pr23164.c
/* { dg-do compile } */
/* { dg-options "-O2" } */
bool f();
struct S {
S();
~S();
};
void g() {
for (;;) {
S s1, s2, s3, s4, s5, s6;
if (f())
continue;
macro1.c
// { dg-options "-fabi-version=1" }
#if __GXX_ABI_VERSION != 102
#error "Incorrect value of __GXX_ABI_VERSION"
#endif
macro2.c
// { dg-options "-fabi-version=2" }
#if __GXX_ABI_VERSION != 1002
#error "Incorrect value of __GXX_ABI_VERSION"
#endif
macro0.c
// { dg-options "-fabi-version=0" }
#if __GXX_ABI_VERSION != 999999
#error "Incorrect value of __GXX_ABI_VERSION"
#endif
ucnid-1.c
/* { dg-do run } */
/* { dg-options "-fextended-identifiers" } */
/* { dg-xfail-if "" { powerpc-ibm-aix* *-*-solaris2.* } { "*" } { "" } } */
#include
int \u00C0(void) { return 1; }
int \u0
pr23205.c
/* { dg-do compile } */
/* { dg-skip-if "No stabs" { mmix-*-* *-*-aix* *-*-netware* alpha*-*-* hppa*64*-*-* ia64-*-* } { "*" } { "" } } */
/* { dg-options "-gstabs+ -fno-eliminate-unused-debug-types"
weak.c
// { dg-options "-fno-weak" }
#if __GXX_WEAK__
#error "__GXX_WEAK__ defined when -fno-weak in use"
#endif