diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 21:01:08 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 21:01:08 +0000 |
commit | 734b188090539eddf08e61c317415f566446691b (patch) | |
tree | abc7516f5a80c8b0810f5018125eb5f95717ca76 /labels.c | |
parent | 1cd0e2d5bf50b2cc482cad7beb8f7dee6a81d57b (diff) | |
download | nasm-734b188090539eddf08e61c317415f566446691b.tar.gz nasm-734b188090539eddf08e61c317415f566446691b.tar.bz2 nasm-734b188090539eddf08e61c317415f566446691b.zip |
NASM 0.98.09
Diffstat (limited to 'labels.c')
-rw-r--r-- | labels.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -20,7 +20,6 @@ * @@, so @@local is a TASM compatible local label. Note that we only * check for the first @ symbol, although TASM requires both. */ -#ifdef TASM_COMPAT #define islocal(l) \ (tasm_compatible_mode ? \ (((l)[0] == '.' || (l)[0] == '@') && (l)[1] != '.') : \ @@ -29,10 +28,6 @@ (tasm_compatible_mode ? \ ((c) == '.' || (c) == '@') : \ ((c) == '.')) -#else -#define islocal(l) ((l)[0] == '.' && (l)[1] != '.') -#define islocalchar(c) ((c) == '.') -#endif #define LABEL_BLOCK 32 /* no. of labels/block */ #define LBLK_SIZE (LABEL_BLOCK*sizeof(union label)) |