1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Fix may-be-used-uninitialized warning.

llvm-svn: 81223
This commit is contained in:
Daniel Dunbar 2009-09-08 16:14:54 +00:00
parent ac3bbe614d
commit c3a4c4c602

View File

@ -257,8 +257,8 @@ static void
p_ere(struct parse *p, int stop) /* character this ERE should end at */
{
char c;
sopno prevback;
sopno prevfwd;
sopno prevback = 0;
sopno prevfwd = 0;
sopno conc;
int first = 1; /* is this the first alternative? */