代码搜索:LABEL
找到约 10,000 项符合「LABEL」的源代码
代码结果 10,000
www.eeworm.com/read/470720/1446116
c label1.c
// Build don't link:
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 h(
www.eeworm.com/read/470720/1446888
c label2.c
// Build don't link:
// GROUPS passed labels
extern "C" void abort();
class X {
public:
X();
};
void foo ()
{
X: ::abort();
goto X;
}
www.eeworm.com/read/470720/1447010
c label1.c
// Build don't link:
// GROUPS passed labels
// it should only give 1 error, about using an undefined label
int main(void) { goto dummy; }// ERROR - .*
www.eeworm.com/read/470720/1447160
c label2.c
// Origin: Mark Mitchell
// Special g++ Options:
template
int f ()
{
int i = 0;
int j = 0;
int k = 0;
l:
if (j)
return 0;
({
__label__ l;
k
www.eeworm.com/read/470720/1447171
c label1.c
// Origin: Mark Mitchell
// Special g++ Options:
int main ()
{
int i = 0;
int j = 0;
int k = 0;
l:
if (j)
return 0;
({
__label__ l;
k = 0;
l:
i
www.eeworm.com/read/470693/1458062
c label1.c
// Build don't link:
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 h(
www.eeworm.com/read/470693/1458834
c label2.c
// Build don't link:
// GROUPS passed labels
extern "C" void abort();
class X {
public:
X();
};
void foo ()
{
X: ::abort();
goto X;
}
www.eeworm.com/read/470693/1458956
c label1.c
// Build don't link:
// GROUPS passed labels
// it should only give 1 error, about using an undefined label
int main(void) { goto dummy; }// ERROR - .*
www.eeworm.com/read/470693/1459106
c label2.c
// Origin: Mark Mitchell
// Special g++ Options:
template
int f ()
{
int i = 0;
int j = 0;
int k = 0;
l:
if (j)
return 0;
({
__label__ l;
k
www.eeworm.com/read/470693/1459117
c label1.c
// Origin: Mark Mitchell
// Special g++ Options:
int main ()
{
int i = 0;
int j = 0;
int k = 0;
l:
if (j)
return 0;
({
__label__ l;
k = 0;
l:
i