[llvm-commits] [zorg] r104973 - /zorg/trunk/lnt/lnt/tests/nt.py

Daniel Dunbar daniel at zuster.org
Fri May 28 10:49:10 PDT 2010


Author: ddunbar
Date: Fri May 28 12:49:10 2010
New Revision: 104973

URL: http://llvm.org/viewvc/llvm-project?rev=104973&view=rev
Log:
LNT/runtest nt: --optimize-option -Os should set -O2 for LLC, not -O3.

Modified:
    zorg/trunk/lnt/lnt/tests/nt.py

Modified: zorg/trunk/lnt/lnt/tests/nt.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/lnt/lnt/tests/nt.py?rev=104973&r1=104972&r2=104973&view=diff
==============================================================================
--- zorg/trunk/lnt/lnt/tests/nt.py (original)
+++ zorg/trunk/lnt/lnt/tests/nt.py Fri May 28 12:49:10 2010
@@ -52,8 +52,8 @@
     # Set the optimization level options.
     make_variables['OPTFLAGS'] = opts.optimize_option
     if opts.optimize_option == '-Os':
-        make_variables['LLI_OPTFLAGS'] = '-O3'
-        make_variables['LLC_OPTFLAGS'] = '-O3'
+        make_variables['LLI_OPTFLAGS'] = '-O2'
+        make_variables['LLC_OPTFLAGS'] = '-O2'
     else:
         make_variables['LLI_OPTFLAGS'] = opts.optimize_option
         make_variables['LLC_OPTFLAGS'] = opts.optimize_option





More information about the llvm-commits mailing list