qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-arm] [PATCH v2 2/6] target-i386: print obsolete warnings if +-feat


From: Igor Mammedov
Subject: [Qemu-arm] [PATCH v2 2/6] target-i386: print obsolete warnings if +-features are used
Date: Thu, 9 Jun 2016 19:10:59 +0200

Signed-off-by: Igor Mammedov <address@hidden>
---
 target-i386/cpu.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index 947cf18..3f886a5 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1979,9 +1979,15 @@ static void x86_cpu_parse_featurestr(CPUState *cs, char 
*features,
         /* Compatibility syntax: */
         if (featurestr[0] == '+') {
             add_flagname_to_bitmaps(featurestr + 1, plus_features, &local_err);
+            fprintf(stderr,
+                "'+%s' is obsolete and will be removed in future, use '%s=on'",
+                featurestr + 1, featurestr + 1);
             continue;
         } else if (featurestr[0] == '-') {
             add_flagname_to_bitmaps(featurestr + 1, minus_features, 
&local_err);
+            fprintf(stderr,
+                "'-%s' is obsolete and will be removed in future, use 
'%s=off'",
+                featurestr + 1, featurestr + 1);
             continue;
         }
 
-- 
2.7.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]