Announce, that the long displacement facility is noq required for s390x.
Update minimum machine model. See also VEX r3034.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14802 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/NEWS b/NEWS
index 4841de4..79dc0bd 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,9 @@
 
 * ================== PLATFORM CHANGES =================
 
+* s390x: It is now required for the host to have the long displacement
+  facility. The oldest supported machine model is z990.
+
 * ==================== TOOL CHANGES ====================
 
 * Memcheck:
diff --git a/README.s390 b/README.s390
index cc1d2b3..0af33e4 100644
--- a/README.s390
+++ b/README.s390
@@ -2,8 +2,8 @@
 Requirements
 ------------
 - You need GCC 3.4 or later to compile the s390 port.
-- To run valgrind a z10 machine or any later model is needed.
-  Older machine models down to and including z900 may work but have
+- To run valgrind a z10 machine or any later model is recommended.
+  Older machine models down to and including z990 may work but have
   not been tested extensively.
 
 
@@ -26,8 +26,8 @@
 -------------------
 Valgrind does not require that the host machine has the same hardware
 facilities as the machine for which the client program was compiled.
-This is convenient. The JIT compiler will translate the client instructions
-according to the facilities available on the host.
+This is convenient. If possible, the JIT compiler will translate the
+client instructions according to the facilities available on the host.
 This means, though, that probing for hardware facilities by issuing
 instructions from that facility and observing whether SIGILL is thrown
 may not work. As a consequence, programs that attempt to do so may
diff --git a/coregrind/m_main.c b/coregrind/m_main.c
index 2b2ac79..3f14452 100644
--- a/coregrind/m_main.c
+++ b/coregrind/m_main.c
@@ -1774,7 +1774,7 @@
         VG_(printf)("   * AMD Athlon64/Opteron\n");
         VG_(printf)("   * ARM (armv7)\n");
         VG_(printf)("   * PowerPC (most; ppc405 and above)\n");
-        VG_(printf)("   * System z (64bit only - s390x; z900 and above)\n");
+        VG_(printf)("   * System z (64bit only - s390x; z990 and above)\n");
         VG_(printf)("\n");
         VG_(exit)(1);
      }