[llvm-commits] [llvm] r148102 - /llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp

Andrew Trick atrick at apple.com
Thu Jan 12 22:30:20 PST 2012


Author: atrick
Date: Fri Jan 13 00:30:19 2012
New Revision: 148102

URL: http://llvm.org/viewvc/llvm-project?rev=148102&view=rev
Log:
80-col violation

Modified:
    llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp

Modified: llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp?rev=148102&r1=148101&r2=148102&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp (original)
+++ llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp Fri Jan 13 00:30:19 2012
@@ -359,9 +359,9 @@
 
   // Install a MachineModuleInfo class, which is an immutable pass that holds
   // all the per-module stuff we're generating, including MCContext.
-  MachineModuleInfo *MMI = new MachineModuleInfo(*getMCAsmInfo(),
-                                                 *getRegisterInfo(),
-                                     &getTargetLowering()->getObjFileLowering());
+  MachineModuleInfo *MMI =
+    new MachineModuleInfo(*getMCAsmInfo(), *getRegisterInfo(),
+                          &getTargetLowering()->getObjFileLowering());
   PM.add(MMI);
   OutContext = &MMI->getContext(); // Return the MCContext specifically by-ref.
 





More information about the llvm-commits mailing list