Do not run loop-aligner at -fast (e.g. -O0).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51898 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2008-06-03 06:56:08 +00:00
parent 4315eee376
commit f73ff3aaf6

View File

@ -140,7 +140,7 @@ LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
if (addPreEmitPass(PM, Fast) && PrintMachineCode)
PM.add(createMachineFunctionPrinterPass(cerr));
if (AlignLoops && !OptimizeForSize)
if (AlignLoops && !Fast && !OptimizeForSize)
PM.add(createLoopAlignerPass());
switch (FileType) {