代码搜索:LABEL
找到约 10,000 项符合「LABEL」的源代码
代码结果 10,000
www.eeworm.com/read/167562/5456200
h label_taskmenu.h
/****************************************************************************
**
** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.
**
** This file is part of the Qt Designer of the Qt Too
www.eeworm.com/read/162614/5517521
c label4.c
// PR c++/20563: ICE (--enable-checking), infinite loop (--disable-checking)
// Origin: Giovanni Bajo
// { dg-do compile }
__label__ *l; // { dg-error "before" }
www.eeworm.com/read/162614/5517555
c label2.c
// { dg-options "" }
template
void f() {
l:
void *p[] = { &&l };
goto *p;
}
template void f();
www.eeworm.com/read/162614/5517642
c label1.c
// { dg-options "" }
int main(void) {
static const void* lbls[2][2] = {{&&lbl0, &&lbl0}, {&&lbl0, &&lbl0}};
goto *lbls[0];
lbl0:
;
}
www.eeworm.com/read/162614/5517701
c label3.c
// Bug: we were removing the p = q assignment in dce, and then reinserting
// it *after* the try/catch in out-of-ssa. Oops.
// testcase reduced from libjava/interpret.cc.
// { dg-do run }
// { dg-o
www.eeworm.com/read/162614/5517711
c label5.c
// { dg-options "" }
// PR c++/24052
struct A { };
int main() { b: A() && && b; } // { dg-error "A\\(\\) && && *b" }
// { dg-error "candidate" "additional" { target *-*-* } 5 }
www.eeworm.com/read/162614/5520569
c label1.c
// { dg-do assemble }
template
struct S {};
template
inline void g(T t)
{
here:
S st;
goto here;
}
template
void f(T t)
{
here:
g(t);
goto here;
}
void
www.eeworm.com/read/162614/5521337
c label2.c
// { dg-do assemble }
// GROUPS passed labels
extern "C" void abort();
class X {
public:
X();
};
void foo ()
{
X: ::abort();
goto X;
}
www.eeworm.com/read/162614/5521459
c label1.c
// { dg-do assemble }
// GROUPS passed labels
// it should only give 1 error, about using an undefined label
int main(void) { goto dummy; }// { dg-error "" } .*
www.eeworm.com/read/162614/5521609
c label2.c
// { dg-do run }
// { dg-options "" }
// Origin: Mark Mitchell
template
int f ()
{
int i = 0;
int j = 0;
int k = 0;
l:
if (j)
return 0;
({
__lab