代码搜索:Scan

找到约 10,000 项符合「Scan」的源代码

代码结果 10,000
www.eeworm.com/read/162614/5517126

c fpsub16s.c

/* { dg-do compile } */ /* { dg-options "-O -mcpu=ultrasparc -mvis" } */ typedef short vec16 __attribute__((vector_size(4))); vec16 foo(vec16 a, vec16 b) { return a - b; } /* { dg-final { scan-ass
www.eeworm.com/read/162614/5517138

c rld-legit1.c

/* Check that we don't get unnecessary insns due to reload using more insns than needed due to reloading of more locations than needed. */ /* { dg-options -O2 } */ /* { dg-final { scan-assemble
www.eeworm.com/read/162614/5517618

c dllimport1.c

// PR c++/7910 // { dg-do compile { target i?86-*-cygwin* i?86-*-mingw*} } // { dg-options { -Wall -W } } class __attribute__((dllimport)) Foo { public: virtual void dummy_foo_func(void) {}
www.eeworm.com/read/162614/5517635

c builtin1.c

// Test whether alternate 'asm' name is applied correctly to // builtin in global namespace // { dg-do compile } // { dg-options "" } // { dg-final { scan-assembler "fancy_printf" } } extern "C" int
www.eeworm.com/read/162614/5517712

c typeof2.c

// Test typeof with __asm redirection // { dg-do compile } // { dg-options "-O2" } extern "C" { extern int foo1; extern int foo1 __asm ("bar1"); int foo1 = 1; extern int foo2 (int); extern
www.eeworm.com/read/162614/5518270

c inline8.c

// PR c++/15871 // { dg-options "-O2 -fkeep-inline-functions" } // { dg-final { scan-assembler "foo" } } inline void foo(void) { }
www.eeworm.com/read/162614/5518314

c inline6.c

// PR c++/13081 // { dg-options "-O2" } // { dg-final { scan-assembler-not "\n_?_Z3fooIlET_S0_\[: \t\n\]" } } template T foo(T); template inline T foo(T t) { return t; }
www.eeworm.com/read/162614/5518378

c inline4.c

// { dg-options "-O2 -ftemplate-depth-20000" } template inline void g() { g(); return; } template inline void g() { int i; return; } void h() { g(); } // { dg-final { sca
www.eeworm.com/read/162614/5518581

c mangle26.c

// Test of std mangling // { dg-do compile } // { dg-options "-fno-inline" } namespace std { struct A { virtual void f () { } }; } std::A a; // { dg-final { scan-assembler "\n_?_ZNSt1AC1Ev
www.eeworm.com/read/162614/5518589

c mangle3.c

// Test mangling of type casts // { dg-do compile } template class A {}; template class B {}; template void f(A &, B &) {} template void g(A &, B