aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/LLVMTargetMachine.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-01-13 06:30:19 +0000
committerAndrew Trick <atrick@apple.com>2012-01-13 06:30:19 +0000
commitb1be1aa8f8bc8a4fbfb243ab7356f33c11f11d2c (patch)
treed6e26641c117e261bb41cfeec3376822459fc79e /llvm/lib/CodeGen/LLVMTargetMachine.cpp
parenta4c5a47b976692731e4b3eb92ea69d754966072d (diff)
downloadllvm-b1be1aa8f8bc8a4fbfb243ab7356f33c11f11d2c.zip
llvm-b1be1aa8f8bc8a4fbfb243ab7356f33c11f11d2c.tar.gz
llvm-b1be1aa8f8bc8a4fbfb243ab7356f33c11f11d2c.tar.bz2
80-col violation
llvm-svn: 148102
Diffstat (limited to 'llvm/lib/CodeGen/LLVMTargetMachine.cpp')
-rw-r--r--llvm/lib/CodeGen/LLVMTargetMachine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/LLVMTargetMachine.cpp b/llvm/lib/CodeGen/LLVMTargetMachine.cpp
index a11c55d..a04f3ed 100644
--- a/llvm/lib/CodeGen/LLVMTargetMachine.cpp
+++ b/llvm/lib/CodeGen/LLVMTargetMachine.cpp
@@ -359,9 +359,9 @@ bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM,
// 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.