代码搜索:bug
找到约 10,000 项符合「bug」的源代码
代码结果 10,000
www.eeworm.com/read/347503/3169336
s bug-3331.s
;;; Bug #3331: Invalid group relaxation, bset uses an invalid address
;;; http://savannah.gnu.org/bugs/?func=detailbug&bug_id=3331&group_id=2424
;;;
.sect .text
.globl _start
_start:
.relax L1
ld
www.eeworm.com/read/347503/3171390
s bug-1825.s
;;; Bug #1825: gas assemble PC-relative indexed addressing modes incorrectly
;;; http://savannah.gnu.org/bugs/?func=detailbug&bug_id=1825&group_id=2424
;;;
.sect .text
.globl _main
_main:
nop
ldx
www.eeworm.com/read/347503/3171401
d bug-1825.d
#objdump: -S -r
#as: -m68hc12 -gdwarf2
#name: 68HC12 PC-relative addressing modes (bug-1825)
.*: file format elf32\-m68hc12
Disassembly of section \.text:
0+ :
;;;
\.sect \.text
\.glo
www.eeworm.com/read/340665/3279372
c bug24.c
struct ack {
char a, b, c;
};
main()
{
struct ack bad;
foo(bad);
}
foo(c)
struct ack c;
{
}
www.eeworm.com/read/340665/3279382
c bug3.c
BUG2 (p) char *p;
{
int a = 0;
if (*p == a)
return 0;
else
return 1;
}
www.eeworm.com/read/340665/3279388
c bug23.c
main()
{
static char static_char_array[1];
static char *static_char_pointer;
static char static_char;
char char_array[1];
char *char_pointer;
char character;
char *cp, c;
c = cp -
www.eeworm.com/read/340665/3279391
c bug4.c
int foo()
{
char c;
return (c ^ 30 ) > (c ^ 40 );
/*
these also get the signal :
return (c ^ 30 ) == (c ^ 40 );
return ((int)c ^ 30 ) > (c ^ 40 );
also fails if c is "extern char"
th
www.eeworm.com/read/340665/3279397
c bug2.c
BUG2 (p) int *p;
{
int a = 0;
if (*p == a)
return 0;
else
return 1;
}