From: Amit Shah Date: Wed, 13 Jan 2010 10:54:42 +0000 (+0530) Subject: vl.c: Remove dead assignment X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5cdc9b76e34d06857ee8d03ea70e8793b8af06e1;p=qemu.git vl.c: Remove dead assignment clang-analyzer pointed out the value of 'sockets' is never reused. Signed-off-by: Amit Shah CC: Andre Przywara Signed-off-by: Anthony Liguori --- diff --git a/vl.c b/vl.c index df2a27819e..06cb40df5c 100644 --- a/vl.c +++ b/vl.c @@ -2403,17 +2403,13 @@ static void smp_parse(const char *optarg) threads = threads > 0 ? threads : 1; if (smp == 0) { smp = cores * threads * sockets; - } else { - sockets = smp / (cores * threads); } } else { if (cores == 0) { threads = threads > 0 ? threads : 1; cores = smp / (sockets * threads); } else { - if (sockets == 0) { - sockets = smp / (cores * threads); - } else { + if (sockets) { threads = smp / (cores * sockets); } }