mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-24 12:35:55 +08:00
16 lines
276 B
ArmAsm
16 lines
276 B
ArmAsm
/* GDB legitimately expects a file name. */
|
|
.stabs "wierd.c",0x64,0,0,0
|
|
|
|
#define N_LSYM 0x80
|
|
#define N_GSYM 0x20
|
|
|
|
#define VAR(name) \
|
|
.globl name; \
|
|
.data; \
|
|
.align 2; \
|
|
name:; \
|
|
.long 42
|
|
|
|
#define STAB(string,type,value) .stabs string,type,0,0,value
|
|
#include "wierd.def"
|