From f2ac68564a769f7bf505106d0cbfb40ea7195567 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Thu, 1 Mar 2007 06:48:29 +0000 Subject: [PATCH] Work around possibly used uninitialized warning, even though it never can be. svn path=/trunk/yasm/; revision=1805 --- modules/parsers/gas/gas-parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/parsers/gas/gas-parse.c b/modules/parsers/gas/gas-parse.c index 2f0cbb07..a119938c 100644 --- a/modules/parsers/gas/gas-parse.c +++ b/modules/parsers/gas/gas-parse.c @@ -1001,7 +1001,7 @@ parse_memaddr(yasm_parser_gas *parser_gas) if (curtok == '(') { int havereg = 0; - uintptr_t reg; + uintptr_t reg = 0; yasm_intnum *scale = NULL; get_next_token(); /* '(' */ -- 2.40.0