From: Florian Krohm Date: Tue, 16 Feb 2016 21:15:32 +0000 (+0000) Subject: s390: Recognise machine model z13s (2965). X-Git-Tag: svn/VALGRIND_3_12_0~234 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=686abc21346e11fb203d4be1c33216dda196666d;p=thirdparty%2Fvalgrind.git s390: Recognise machine model z13s (2965). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15789 --- diff --git a/coregrind/m_machine.c b/coregrind/m_machine.c index cd4606b6e9..ae8b929534 100644 --- a/coregrind/m_machine.c +++ b/coregrind/m_machine.c @@ -616,6 +616,7 @@ static UInt VG_(get_machine_model)(void) { "2827", VEX_S390X_MODEL_ZEC12 }, { "2828", VEX_S390X_MODEL_ZBC12 }, { "2964", VEX_S390X_MODEL_Z13 }, + { "2965", VEX_S390X_MODEL_Z13S }, }; Int model, n, fh; diff --git a/tests/s390x_features.c b/tests/s390x_features.c index de34a98594..bc671c6779 100644 --- a/tests/s390x_features.c +++ b/tests/s390x_features.c @@ -89,6 +89,7 @@ model_info models[] = { { "2827", "zEC12" }, { "2828", "zBC12" }, { "2964", "z13" }, + { "2965", "z13s" }, };