diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-01-18 03:42:28 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-01-18 03:42:28 +0000 |
commit | 887432a5a562b3c5b743a4e9ef26f95f9ca772f7 (patch) | |
tree | 8d55b6f2a8cb863760d29c47c6ec5f8f7eb92ca3 /gdb/block.h | |
parent | 29182b132f1e74decd7acc057931669c16fff0a9 (diff) | |
download | gdb-887432a5a562b3c5b743a4e9ef26f95f9ca772f7.zip gdb-887432a5a562b3c5b743a4e9ef26f95f9ca772f7.tar.gz gdb-887432a5a562b3c5b743a4e9ef26f95f9ca772f7.tar.bz2 |
2004-01-17 Andrew Cagney <cagney@redhat.com>
* mdebugread.c (compare_blocks): Make addr_diff a LONGEST.
* block.h: Make GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOOCK
enums.
Diffstat (limited to 'gdb/block.h')
-rw-r--r-- | gdb/block.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/block.h b/gdb/block.h index 38d037e..a368213 100644 --- a/gdb/block.h +++ b/gdb/block.h @@ -139,9 +139,7 @@ struct blockvector /* Special block numbers */ -#define GLOBAL_BLOCK 0 -#define STATIC_BLOCK 1 -#define FIRST_LOCAL_BLOCK 2 +enum { GLOBAL_BLOCK = 0, STATIC_BLOCK = 1, FIRST_LOCAL_BLOCK = 2 }; extern struct symbol *block_function (const struct block *); |