Remove -Os testing. No ABI impact, and helps trim log lengths.
authorAnthony Green <green@moxielogic.com>
Tue, 12 Feb 2019 13:50:30 +0000 (08:50 -0500)
committerAnthony Green <green@moxielogic.com>
Tue, 12 Feb 2019 13:52:18 +0000 (08:52 -0500)
testsuite/lib/libffi.exp

index 28f793a3f80e8cb727bfd9327c8b76daca979f79..b3f684c61820f4d02d3998ebb76f64d68a968dfe 100644 (file)
@@ -1,4 +1,4 @@
-#   Copyright (C) 2003, 2005, 2008, 2009, 2010, 2011, 2014 Free Software Foundation, Inc.
+#   Copyright (C) 2003, 2005, 2008, 2009, 2010, 2011, 2014, 2019 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -480,11 +480,11 @@ proc run-many-tests { testcases extra_flags } {
     switch $compiler_vendor {
       "clang" {
        set common "-W -Wall"
-       set optimizations { "-O0" "-O2" "-Os" }
+       set optimizations { "-O0" "-O2" }
       }
       "gnu" {
         set common "-W -Wall -Wno-psabi"
-        set optimizations { "-O0" "-O2" "-Os" "-O2 -fomit-frame-pointer" }
+        set optimizations { "-O0" "-O2" "-O2 -fomit-frame-pointer" }
       }
       default {
         # Assume we are using the vendor compiler.