代码搜索:LABEL
找到约 10,000 项符合「LABEL」的源代码
代码结果 10,000
www.eeworm.com/read/340665/3268128
d label-001.d
#objdump: -D
#source: label-001.s
#as: -O
.*: file format elf32-d10v
Disassembly of section .text:
00000000 :
0: 2f 00 5e 00 nop || nop
00000004 :
4: 2f 00 5e 00 nop
www.eeworm.com/read/340665/3268137
s label-001.s
.text
.align 2
L0:
nop
nop
.align 2
L1:
nop
nop
.align 2
L2:
nop
nop
.align 2
L3:
nop
nop
.align 2
L4:
nop
nop
.align 2
L5:
nop
nop
.align 2
L6:
nop
nop
.align 2
L7:
nop
nop
www.eeworm.com/read/340665/3274563
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/340665/3275335
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/340665/3275457
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/340665/3275607
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/340665/3275618
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/339446/3302434
cpp label_taskmenu.cpp
/****************************************************************************
**
** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.
**
** This file is part of the Qt Designer of the Qt Too
www.eeworm.com/read/339446/3302453
h label_taskmenu.h
/****************************************************************************
**
** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.
**
** This file is part of the Qt Designer of the Qt Too
www.eeworm.com/read/329537/3430960
c case-label.c
void
bar (int foo)
{
switch (foo)
{
case 0:
abort ();
break;
case 1:
fuckme ();
break;
default:
abort ();
}
}