Add an intrinsic and codegen support for fused multiply-accumulate. The intent
[oota-llvm.git] / lib / CodeGen / Passes.cpp
index 914c78b0b145042881322fc697957f4ea3cc84f2..315aedddb9ef199e3951e49d83d2e906a423b626 100644 (file)
@@ -55,8 +55,8 @@ FunctionPass *llvm::createRegisterAllocator(CodeGenOpt::Level OptLevel) {
     RegisterRegAlloc::setDefault(RegAlloc);
   }
 
-  // This forces linking of the greedy register allocator, so -regalloc=greedy
-  // works in clang.
+  // This forces linking of the linear scan register allocator,
+  // so -regalloc=linearscan still works in clang.
   if (Ctor == createLinearScanRegisterAllocator)
     return createLinearScanRegisterAllocator();