代码搜索:Scan
找到约 10,000 项符合「Scan」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5518640
c thunk1.c
// { dg-do compile { target i?86-*-* x86_64-*-* } }
// { dg-require-effective-target ilp32 }
struct A {
virtual void f ();
};
struct B : public virtual A {
virtual void f ();
};
struct C {
v
www.eeworm.com/read/162614/5518642
c mangle9.c
// { dg-options "-fabi-version=0" }
template
void f (typename Q::X) {}
struct S {
typedef int X;
};
template void f (int);
// { dg-final { scan-assembler _Z1fI1SEvNT_1XE } }
www.eeworm.com/read/162614/5518645
c mangle7.c
/* { dg-do compile } */
typedef void *const t1[2];
float const f1(t1 (&)[79], ...) {}
/* { dg-final { scan-assembler _Z2f1RA79_A2_KPvz } } */
www.eeworm.com/read/162614/5518657
c mangle23.c
// PR c++/16240
// { dg-options "-fabi-version=2" }
void foo(char);
template struct CB {};
void g(CB i) {}
// { dg-final { scan-assembler "\n_?_Z1g2CBILZ3foocEE\[: \t\n\]" } }
www.eeworm.com/read/162614/5522772
mm selector-5.mm
/* { dg-options "" } */
/* { dg-do compile } */
#include
int main()
{
SEL foo = @selector(foo::);
return 0;
}
/* { dg-final { scan-assembler "foo::" } } */
www.eeworm.com/read/162614/5522808
mm const-str-9.mm
/* Test if ObjC constant strings get placed in the correct section. */
/* Contributed by Ziemowit Laski */
/* { dg-options "-fnext-runtime" } */
/* { dg-do compile { target *-*-d
www.eeworm.com/read/162614/5522823
mm selector-6.mm
/* { dg-options "" } */
/* { dg-do compile } */
#include
int main()
{
SEL foo = @selector(foo: a::);
return 0;
}
/* { dg-final { scan-assembler "foo:a::" } } */
www.eeworm.com/read/162614/5522880
m next-runtime-1.m
/* Test that the correct version number (6) is set in the module descriptor
when compiling for the NeXT runtime. */
/* Author: Ziemowit Laski */
/* { dg-do compile { target *-
www.eeworm.com/read/162614/5522998
m const-str-9.m
/* Test if ObjC constant strings get placed in the correct section. */
/* Contributed by Ziemowit Laski */
/* { dg-options "-fnext-runtime" } */
/* { dg-do compile { target *-*-d
www.eeworm.com/read/162614/5526012
f90 vect-2.f90
! { dg-do compile }
! { dg-require-effective-target vect_float }
SUBROUTINE FOO(A, B, C)
DIMENSION A(1000000), B(1000000), C(1000000)
READ*, X, Y
A = LOG(X); B = LOG(Y); C = A + B
PRINT*, C(500000)
E