From: Florian Krohm Date: Tue, 28 Aug 2012 13:33:10 +0000 (+0000) Subject: s390: Add zEC12 machine model. Fix spelling for some older models. X-Git-Tag: svn/VALGRIND_3_9_0~735 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e32ad1d0ae1a60a61e11919bf7aee03babaeb467;p=thirdparty%2Fvalgrind.git s390: Add zEC12 machine model. Fix spelling for some older models. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12905 --- diff --git a/coregrind/m_machine.c b/coregrind/m_machine.c index a468f8d9e5..04f05c762e 100644 --- a/coregrind/m_machine.c +++ b/coregrind/m_machine.c @@ -531,6 +531,7 @@ static UInt VG_(get_machine_model)(void) { "2098", VEX_S390X_MODEL_Z10_BC }, { "2817", VEX_S390X_MODEL_Z196 }, { "2818", VEX_S390X_MODEL_Z114 }, + { "2827", VEX_S390X_MODEL_ZEC12 }, }; Int model, n, fh; diff --git a/tests/s390x_features.c b/tests/s390x_features.c index f0fdb63462..837d83eda2 100644 --- a/tests/s390x_features.c +++ b/tests/s390x_features.c @@ -79,12 +79,13 @@ model_info models[] = { { "2066", "z800" }, { "2084", "z990" }, { "2086", "z890" }, - { "2094", "z9-ec" }, - { "2096", "z9-bc" }, - { "2097", "z10-ec" }, - { "2098", "z10-bc" }, + { "2094", "z9-EC" }, + { "2096", "z9-BC" }, + { "2097", "z10-EC" }, + { "2098", "z10-BC" }, { "2817", "z196" }, { "2818", "z114" }, + { "2827", "zEC12" }, };