diff options
author | K. Richard Pixley <rich@cygnus> | 1993-09-08 20:15:34 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-09-08 20:15:34 +0000 |
commit | 46c28185abd94175e479cec1ffaa9f2dd89f9e38 (patch) | |
tree | 029f4813f9c9d7a601ac47bae5d9699c820344fc /gdb/stabsread.c | |
parent | 414b2c8f7a865c2ff2fa381d618f7cd446dddbf4 (diff) | |
download | gdb-46c28185abd94175e479cec1ffaa9f2dd89f9e38.zip gdb-46c28185abd94175e479cec1ffaa9f2dd89f9e38.tar.gz gdb-46c28185abd94175e479cec1ffaa9f2dd89f9e38.tar.bz2 |
some gcc lint
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r-- | gdb/stabsread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c index 1841a76..ed820bb 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -1544,7 +1544,7 @@ rs6000_builtin_type (typenum) #define NUMBER_RECOGNIZED 30 /* This includes an empty slot for type number -0. */ static struct type *negative_types[NUMBER_RECOGNIZED + 1]; - struct type *rettype; + struct type *rettype = NULL; if (typenum >= 0 || typenum < -NUMBER_RECOGNIZED) { @@ -3182,7 +3182,7 @@ read_range_type (pp, typenums, objfile) char got_signed = 0; char got_unsigned = 0; /* Number of bits in the type. */ - int nbits; + int nbits = 0; /* Range from 0 to <large number> is an unsigned large integral type. */ if ((n2bits == 0 && n2 == 0) && n3bits != 0) |