From: Nikunj A Dadhania Date: Mon, 10 Apr 2017 06:06:55 +0000 (+0530) Subject: cpus: fix wrong define name X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8695350357abc38a4f915ba6cb62e796bbbaf111;p=qemu.git cpus: fix wrong define name While the configure script generates TARGET_SUPPORTS_MTTCG define, one of the define is cpus.c is checking wrong name: TARGET_SUPPORT_MTTCG Signed-off-by: Nikunj A Dadhania Signed-off-by: Alex Bennée --- diff --git a/cpus.c b/cpus.c index 68fdbc40b9..58d90aa2b9 100644 --- a/cpus.c +++ b/cpus.c @@ -202,7 +202,7 @@ void qemu_tcg_configure(QemuOpts *opts, Error **errp) } else if (use_icount) { error_setg(errp, "No MTTCG when icount is enabled"); } else { -#ifndef TARGET_SUPPORT_MTTCG +#ifndef TARGET_SUPPORTS_MTTCG error_report("Guest not yet converted to MTTCG - " "you may get unexpected results"); #endif