[llvm-commits] [llvm-gcc-4.2] r94309 - /llvm-gcc-4.2/trunk/gcc/llvm-backend.cpp

Bill Wendling isanbard at gmail.com
Sat Jan 23 02:27:43 PST 2010


Author: void
Date: Sat Jan 23 04:27:42 2010
New Revision: 94309

URL: http://llvm.org/viewvc/llvm-project?rev=94309&view=rev
Log:
Change the -disable-schedule flag to the new -pre-RA-sched=source.

Modified:
    llvm-gcc-4.2/trunk/gcc/llvm-backend.cpp

Modified: llvm-gcc-4.2/trunk/gcc/llvm-backend.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/llvm-backend.cpp?rev=94309&r1=94308&r2=94309&view=diff

==============================================================================
--- llvm-gcc-4.2/trunk/gcc/llvm-backend.cpp (original)
+++ llvm-gcc-4.2/trunk/gcc/llvm-backend.cpp Sat Jan 23 04:27:42 2010
@@ -407,7 +407,7 @@
   if (flag_unwind_tables)
     Args.push_back("--unwind-tables");
   if (!flag_schedule_insns)
-    Args.push_back("--disable-scheduling");
+    Args.push_back("--pre-RA-sched=source");
 
   // If there are options that should be passed through to the LLVM backend
   // directly from the command line, do so now.  This is mainly for debugging





More information about the llvm-commits mailing list