projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f6dae76
)
Fix 80-col violation
author
Eli Bendersky
<eliben@google.com>
Thu, 22 Nov 2012 14:10:40 +0000
(14:10 +0000)
committer
Eli Bendersky
<eliben@google.com>
Thu, 22 Nov 2012 14:10:40 +0000
(14:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168498
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/LLVMTargetMachine.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/LLVMTargetMachine.cpp
b/lib/CodeGen/LLVMTargetMachine.cpp
index 24daafaa62e1ea50937c3b1273fdf81ede4b842a..91ec0387250c67f79e30d1cc356a2a5f262080dc 100644
(file)
--- a/
lib/CodeGen/LLVMTargetMachine.cpp
+++ b/
lib/CodeGen/LLVMTargetMachine.cpp
@@
-191,7
+191,8
@@
bool LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
// emission fails.
MCCodeEmitter *MCE = getTarget().createMCCodeEmitter(*getInstrInfo(), MRI,
STI, *Context);
- MCAsmBackend *MAB = getTarget().createMCAsmBackend(getTargetTriple(), TargetCPU);
+ MCAsmBackend *MAB = getTarget().createMCAsmBackend(getTargetTriple(),
+ TargetCPU);
if (MCE == 0 || MAB == 0)
return true;