tcg-s390: Don't force -march=z990
authorRichard Henderson <rth@twiddle.net>
Mon, 31 Mar 2014 17:40:49 +0000 (13:40 -0400)
committerRichard Henderson <rth@twiddle.net>
Thu, 15 May 2014 16:20:47 +0000 (09:20 -0700)
While we still require the LONG DISPLACEMENT facility, defaults
have moved on since then.  Don't override the system compiler,
whose default may be set to z9-109 or later.

Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Richard Henderson <rth@twiddle.net>
configure

index 6adfa72..332eea0 100755 (executable)
--- a/configure
+++ b/configure
@@ -1137,11 +1137,11 @@ case "$cpu" in
            CPU_CFLAGS="-m64 -mcpu=ultrasparc"
            ;;
     s390)
-           CPU_CFLAGS="-m31 -march=z990"
+           CPU_CFLAGS="-m31"
            LDFLAGS="-m31 $LDFLAGS"
            ;;
     s390x)
-           CPU_CFLAGS="-m64 -march=z990"
+           CPU_CFLAGS="-m64"
            LDFLAGS="-m64 $LDFLAGS"
            ;;
     i386)